diff --git a/CUERipper/frmCUERipper.Designer.cs b/CUERipper/frmCUERipper.Designer.cs
index e54d307..7a2030d 100644
--- a/CUERipper/frmCUERipper.Designer.cs
+++ b/CUERipper/frmCUERipper.Designer.cs
@@ -158,7 +158,8 @@ namespace CUERipper
resources.GetString("comboCodec.Items"),
resources.GetString("comboCodec.Items1"),
resources.GetString("comboCodec.Items2"),
- resources.GetString("comboCodec.Items3")});
+ resources.GetString("comboCodec.Items3"),
+ resources.GetString("comboCodec.Items4")});
resources.ApplyResources(this.comboCodec, "comboCodec");
this.comboCodec.Name = "comboCodec";
//
diff --git a/CUERipper/frmCUERipper.cs b/CUERipper/frmCUERipper.cs
index 7be1d81..f6b63b5 100644
--- a/CUERipper/frmCUERipper.cs
+++ b/CUERipper/frmCUERipper.cs
@@ -66,9 +66,53 @@ namespace CUERipper
//{
//}
- foreach(char drive in CDDriveReader.DrivesAvailable())
+ UpdateDrives();
+ comboLossless.SelectedIndex = 0;
+ comboCodec.SelectedIndex = 0;
+ comboImage.SelectedIndex = 0;
+ }
+
+ #region private constants
+ ///
+ /// The window message of interest, device change
+ ///
+ const int WM_DEVICECHANGE = 0x0219;
+ const ushort DBT_DEVICEARRIVAL = 0x8000;
+ const ushort DBT_DEVICEREMOVECOMPLETE = 0x8004;
+ const ushort DBT_DEVNODES_CHANGED = 0x0007;
+ #endregion
+
+ ///
+ /// This method is called when a window message is processed by the dotnet application
+ /// framework. We override this method and look for the WM_DEVICECHANGE message. All
+ /// messages are delivered to the base class for processing, but if the WM_DEVICECHANGE
+ /// method is seen, we also alert any BWGBURN programs that the media in the drive may
+ /// have changed.
+ ///
+ /// the windows message being processed
+ protected override void WndProc(ref Message m)
+ {
+ if (m.Msg == WM_DEVICECHANGE)
+ {
+ int val = m.WParam.ToInt32();
+ if (val == DBT_DEVICEARRIVAL || val == DBT_DEVICEREMOVECOMPLETE)
+ UpdateDrive();
+ else if (val == DBT_DEVNODES_CHANGED)
+ UpdateDrives();
+ }
+ base.WndProc(ref m);
+ }
+
+ private void UpdateDrives()
+ {
+ buttonGo.Enabled = false;
+ comboDrives.Items.Clear();
+ comboRelease.Items.Clear();
+ listTracks.Items.Clear();
+ foreach (char drive in CDDriveReader.DrivesAvailable())
{
CDDriveReader reader = new CDDriveReader();
+ string arName = null;
int driveOffset;
try
{
@@ -77,7 +121,16 @@ namespace CUERipper
catch
{
}
- if (!AccurateRipVerify.FindDriveReadOffset(reader.ARName, out driveOffset))
+ try
+ {
+ arName = reader.ARName;
+ }
+ catch (Exception ex)
+ {
+ comboDrives.Items.Add(drive + ": " + ex.Message);
+ continue;
+ }
+ if (!AccurateRipVerify.FindDriveReadOffset(arName, out driveOffset))
; //throw new Exception("Failed to find drive read offset for drive" + _ripper.ARName);
reader.DriveOffset = driveOffset;
comboDrives.Items.Add(reader);
@@ -85,9 +138,6 @@ namespace CUERipper
if (comboDrives.Items.Count == 0)
comboDrives.Items.Add("No CD drives found");
comboDrives.SelectedIndex = 0;
- comboLossless.SelectedIndex = 0;
- comboCodec.SelectedIndex = 0;
- comboImage.SelectedIndex = 0;
}
private void SetupControls ()
@@ -196,6 +246,7 @@ namespace CUERipper
(string)comboCodec.SelectedItem == "flac" ? OutputAudioFormat.FLAC :
(string)comboCodec.SelectedItem == "wv" ? OutputAudioFormat.WavPack :
(string)comboCodec.SelectedItem == "ape" ? OutputAudioFormat.APE :
+ (string)comboCodec.SelectedItem == "tta" ? OutputAudioFormat.TTA :
OutputAudioFormat.NoAudio;
_cueSheet.GenerateFilenames(_format, comboLossless.SelectedIndex != 0, _pathOut);
@@ -224,7 +275,7 @@ namespace CUERipper
e.Value = string.Format("{0}{1} - {2}", r.cueSheet.Year != "" ? r.cueSheet.Year + ": " : "", r.cueSheet.Artist, r.cueSheet.Title);
}
- private void comboRelease_SelectedIndexChanged(object sender, EventArgs e)
+ private void UpdateRelease()
{
listTracks.Items.Clear();
if (comboRelease.SelectedItem == null || comboRelease.SelectedItem is string)
@@ -238,6 +289,11 @@ namespace CUERipper
_reader.TOC[i].LengthMSF }));
}
+ private void comboRelease_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ UpdateRelease();
+ }
+
private void MusicBrainz_LookupProgress(object sender, XmlRequestEventArgs e)
{
//_progress.percentDisk = (1.0 + _progress.percentDisk) / 2;
@@ -405,12 +461,16 @@ namespace CUERipper
});
}
- private void comboDrives_SelectedIndexChanged(object sender, EventArgs e)
+ private void UpdateDrive()
{
+ buttonGo.Enabled = false;
comboRelease.Items.Clear();
listTracks.Items.Clear();
if (comboDrives.SelectedItem is string)
+ {
+ _reader = null;
return;
+ }
_reader = (CDDriveReader)comboDrives.SelectedItem;
try
{
@@ -429,7 +489,7 @@ namespace CUERipper
comboRelease.SelectedIndex = 0;
return;
}
- comboRelease_SelectedIndexChanged(sender, e);
+ UpdateRelease();
_workThread = new Thread(Lookup);
_workThread.Priority = ThreadPriority.BelowNormal;
_workThread.IsBackground = true;
@@ -437,6 +497,11 @@ namespace CUERipper
_workThread.Start(_reader);
}
+ private void comboDrives_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ UpdateDrive();
+ }
+
private void listTracks_DoubleClick(object sender, EventArgs e)
{
listTracks.FocusedItem.BeginEdit();
diff --git a/CUERipper/frmCUERipper.resx b/CUERipper/frmCUERipper.resx
index ed0e987..fd38d83 100644
--- a/CUERipper/frmCUERipper.resx
+++ b/CUERipper/frmCUERipper.resx
@@ -315,6 +315,9 @@
ape
+
+ tta
+
82, 335
@@ -435,14 +438,8 @@
285, 58
-
- 152, 22
-
-
- Edit
-
- 153, 48
+ 95, 26
contextMenuStripRelease
@@ -471,6 +468,12 @@
1
+
+ 94, 22
+
+
+ Edit
+
181, 22
@@ -489,11 +492,39 @@
499, 393
+
+
+ AAABAAEAEBAAAAAACABoBQAAFgAAACgAAAAQAAAAIAAAAAEACAAAAAAAAAEAAAAAAAAAAAAAAAEAAAAB
+ AAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAwMDAAMDcwADwyqYABAQEAAgICAAMDAwAERERABYW
+ FgAcHBwAIiIiACkpKQBVVVUATU1NAEJCQgA5OTkAgHz/AFBQ/wCTANYA/+zMAMbW7wDW5+cAkKmtAAAA
+ MwAAAGYAAACZAAAAzAAAMwAAADMzAAAzZgAAM5kAADPMAAAz/wAAZgAAAGYzAABmZgAAZpkAAGbMAABm
+ /wAAmQAAAJkzAACZZgAAmZkAAJnMAACZ/wAAzAAAAMwzAADMZgAAzJkAAMzMAADM/wAA/2YAAP+ZAAD/
+ zAAzAAAAMwAzADMAZgAzAJkAMwDMADMA/wAzMwAAMzMzADMzZgAzM5kAMzPMADMz/wAzZgAAM2YzADNm
+ ZgAzZpkAM2bMADNm/wAzmQAAM5kzADOZZgAzmZkAM5nMADOZ/wAzzAAAM8wzADPMZgAzzJkAM8zMADPM
+ /wAz/zMAM/9mADP/mQAz/8wAM///AGYAAABmADMAZgBmAGYAmQBmAMwAZgD/AGYzAABmMzMAZjNmAGYz
+ mQBmM8wAZjP/AGZmAABmZjMAZmZmAGZmmQBmZswAZpkAAGaZMwBmmWYAZpmZAGaZzABmmf8AZswAAGbM
+ MwBmzJkAZszMAGbM/wBm/wAAZv8zAGb/mQBm/8wAzAD/AP8AzACZmQAAmTOZAJkAmQCZAMwAmQAAAJkz
+ MwCZAGYAmTPMAJkA/wCZZgAAmWYzAJkzZgCZZpkAmWbMAJkz/wCZmTMAmZlmAJmZmQCZmcwAmZn/AJnM
+ AACZzDMAZsxmAJnMmQCZzMwAmcz/AJn/AACZ/zMAmcxmAJn/mQCZ/8wAmf//AMwAAACZADMAzABmAMwA
+ mQDMAMwAmTMAAMwzMwDMM2YAzDOZAMwzzADMM/8AzGYAAMxmMwCZZmYAzGaZAMxmzACZZv8AzJkAAMyZ
+ MwDMmWYAzJmZAMyZzADMmf8AzMwAAMzMMwDMzGYAzMyZAMzMzADMzP8AzP8AAMz/MwCZ/2YAzP+ZAMz/
+ zADM//8AzAAzAP8AZgD/AJkAzDMAAP8zMwD/M2YA/zOZAP8zzAD/M/8A/2YAAP9mMwDMZmYA/2aZAP9m
+ zADMZv8A/5kAAP+ZMwD/mWYA/5mZAP+ZzAD/mf8A/8wAAP/MMwD/zGYA/8yZAP/MzAD/zP8A//8zAMz/
+ ZgD//5kA///MAGZm/wBm/2YAZv//AP9mZgD/Zv8A//9mACEApQBfX18Ad3d3AIaGhgCWlpYAy8vLALKy
+ sgDX19cA3d3dAOPj4wDq6uoA8fHxAPj4+ADw+/8ApKCgAICAgAAAAP8AAP8AAAD//wD/AAAA/wD/AP//
+ AAD///8ACgoKCgrr6+vr6+sKCgoKCgoKCu/r7/Pz8/Pv6+8KCgoKCuvr7/Pz8/Pz8+/r6woKCu/r8/Pz
+ 8/Pz8/Pz8+vvCu/r8/Pz8/Pz8/Pz8/Pz6+/r7/Pz8/Pz8/Pz8/Pz8+/r6/PrCgrz6woK6/MKCgrz6+vz
+ CvPz8wrz8wrzCvPz8+vr8wrz8/MK8/MK8woK8/Pr6/MK8/PzCvPzCvMK8/Pz6+vv6woK8wrz8wrzCgoK
+ 7+vv6/Pz8/Pz8/Pz8/Pz8+vvCu/r8/Pz8/Pz8/Pz8+vvCgoK6+vv8/Pz8/Pz7+vrCgoKCgrv6+/z8/Pz
+ 7+vvCgoKCgoKCu/r6+vr6+vvCgoKCvgfAADgBwAAwAMAAIABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAIABAADAAwAA4AcAAPAPAAA=
+
+
CenterScreen
- CUERipper
+ CUERipper 1.9.5
toolStripStatusLabel1
diff --git a/CUETools.AccurateRip/AccurateRip.cs b/CUETools.AccurateRip/AccurateRip.cs
index 6ce9844..f04a6ea 100644
--- a/CUETools.AccurateRip/AccurateRip.cs
+++ b/CUETools.AccurateRip/AccurateRip.cs
@@ -16,6 +16,7 @@ namespace CUETools.AccurateRip
_toc = toc;
_accDisks = new List();
_crc32 = new Crc32();
+ _hasLogCRC = false;
_CRCLOG = new uint[_toc.AudioTracks + 1];
for (int i = 0; i <= _toc.AudioTracks; i++)
_CRCLOG[i] = 0;
@@ -170,6 +171,7 @@ namespace CUETools.AccurateRip
public void CRCLOG(int iTrack, uint value)
{
+ _hasLogCRC = true;
_CRCLOG[iTrack] = value;
}
@@ -456,7 +458,7 @@ namespace CUETools.AccurateRip
if (CRC32(0) != 0)
{
sw.WriteLine("");
- sw.WriteLine("Track\t[ CRC32 ]\t[W/O NULL]\t[ LOG ]");
+ sw.WriteLine("Track\t[ CRC32 ]\t[W/O NULL]\t{0:10}", _hasLogCRC ? "[ LOG ]" : "");
sw.WriteLine(String.Format(" --\t[{0:X8}]\t[{1:X8}]\t{2:10}", CRC32(0), CRCWONULL(0), CRCLOG(0) == CRC32(0) ? " CRC32 " : CRCLOG(0) == CRCWONULL(0) ? " W/O NULL " : CRCLOG(0) == 0 ? "" : String.Format("[{0:X8}]", CRCLOG(0))));
for (int iTrack = 1; iTrack <= _toc.AudioTracks; iTrack++)
sw.WriteLine(String.Format(" {0:00}\t[{1:X8}]\t[{2:X8}]\t{3:10}", iTrack, CRC32(iTrack), CRCWONULL(iTrack), CRCLOG(iTrack) == CRC32(iTrack) ? " CRC32 " : CRCLOG(iTrack) == CRCWONULL(iTrack) ? " W/O NULL " : CRCLOG(iTrack) == 0 ? "" : String.Format("[{0:X8}]", CRCLOG(iTrack))));
@@ -615,6 +617,8 @@ namespace CUETools.AccurateRip
Crc32 _crc32;
+ private bool _hasLogCRC;
+
private const int _arOffsetRange = 5 * 588 - 1;
}
diff --git a/CUETools.Processor/Processor.cs b/CUETools.Processor/Processor.cs
index 16a72b4..545b1af 100644
--- a/CUETools.Processor/Processor.cs
+++ b/CUETools.Processor/Processor.cs
@@ -1189,6 +1189,7 @@ namespace CUETools.Processor
else
if (lineStr.StartsWith("TOC of the extracted CD")
|| lineStr.StartsWith("Exact Audio Copy")
+ || lineStr.StartsWith("EAC extraction logfile")
|| lineStr.StartsWith("CUERipper"))
isEACLog = true;
}
@@ -1250,13 +1251,21 @@ namespace CUETools.Processor
if (isEACLog && trNo <= TrackCount)
{
string[] s = { "Copy CRC ", "CRC κξοθθ" };
+ string[] s1 = { "CRC" };
string[] n = lineStr.Split(s, StringSplitOptions.None);
uint crc;
- if (n.Length == 2 && uint.TryParse(n[1], NumberStyles.HexNumber, CultureInfo.CurrentCulture, out crc))
+ if (n.Length == 2 && uint.TryParse(n[1], NumberStyles.HexNumber, CultureInfo.InvariantCulture, out crc))
_arVerify.CRCLOG(trNo++, crc);
+ else if (n.Length == 1)
+ {
+ n = lineStr.Split(s1, StringSplitOptions.None);
+ if (n.Length == 2 && n[0].Trim() == "" && uint.TryParse(n[1], NumberStyles.HexNumber, CultureInfo.InvariantCulture, out crc))
+ _arVerify.CRCLOG(trNo++, crc);
+ }
}
else
- if (lineStr.StartsWith("Exact Audio Copy"))
+ if (lineStr.StartsWith("Exact Audio Copy")
+ || lineStr.StartsWith("EAC extraction logfile"))
isEACLog = true;
}
if (trNo == 2)
diff --git a/CUETools/CUETools.csproj b/CUETools/CUETools.csproj
index 49be309..bfc1124 100644
--- a/CUETools/CUETools.csproj
+++ b/CUETools/CUETools.csproj
@@ -229,6 +229,7 @@
+
diff --git a/CUETools/CUETools.sln b/CUETools/CUETools.sln
index d676ddb..21ca56d 100644
--- a/CUETools/CUETools.sln
+++ b/CUETools/CUETools.sln
@@ -88,337 +88,455 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
+ Debug|Mixed Platforms = Debug|Mixed Platforms
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
+ Release|Mixed Platforms = Release|Mixed Platforms
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{EF351583-A9CD-4530-92C3-20AC02136BC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EF351583-A9CD-4530-92C3-20AC02136BC2}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {EF351583-A9CD-4530-92C3-20AC02136BC2}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
+ {EF351583-A9CD-4530-92C3-20AC02136BC2}.Debug|Mixed Platforms.Build.0 = Debug|x64
{EF351583-A9CD-4530-92C3-20AC02136BC2}.Debug|x64.ActiveCfg = Debug|x64
{EF351583-A9CD-4530-92C3-20AC02136BC2}.Debug|x64.Build.0 = Debug|x64
{EF351583-A9CD-4530-92C3-20AC02136BC2}.Debug|x86.ActiveCfg = Debug|x86
{EF351583-A9CD-4530-92C3-20AC02136BC2}.Debug|x86.Build.0 = Debug|x86
{EF351583-A9CD-4530-92C3-20AC02136BC2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EF351583-A9CD-4530-92C3-20AC02136BC2}.Release|Any CPU.Build.0 = Release|Any CPU
+ {EF351583-A9CD-4530-92C3-20AC02136BC2}.Release|Mixed Platforms.ActiveCfg = Release|x64
+ {EF351583-A9CD-4530-92C3-20AC02136BC2}.Release|Mixed Platforms.Build.0 = Release|x64
{EF351583-A9CD-4530-92C3-20AC02136BC2}.Release|x64.ActiveCfg = Release|x64
{EF351583-A9CD-4530-92C3-20AC02136BC2}.Release|x64.Build.0 = Release|x64
{EF351583-A9CD-4530-92C3-20AC02136BC2}.Release|x86.ActiveCfg = Release|x86
{EF351583-A9CD-4530-92C3-20AC02136BC2}.Release|x86.Build.0 = Release|x86
{E70FA90A-7012-4A52-86B5-362B699D1540}.Debug|Any CPU.ActiveCfg = Debug|x64
+ {E70FA90A-7012-4A52-86B5-362B699D1540}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
+ {E70FA90A-7012-4A52-86B5-362B699D1540}.Debug|Mixed Platforms.Build.0 = Debug|x64
{E70FA90A-7012-4A52-86B5-362B699D1540}.Debug|x64.ActiveCfg = Debug|x64
{E70FA90A-7012-4A52-86B5-362B699D1540}.Debug|x64.Build.0 = Debug|x64
{E70FA90A-7012-4A52-86B5-362B699D1540}.Debug|x86.ActiveCfg = Debug|Win32
{E70FA90A-7012-4A52-86B5-362B699D1540}.Debug|x86.Build.0 = Debug|Win32
{E70FA90A-7012-4A52-86B5-362B699D1540}.Release|Any CPU.ActiveCfg = Release|x64
+ {E70FA90A-7012-4A52-86B5-362B699D1540}.Release|Mixed Platforms.ActiveCfg = Release|x64
+ {E70FA90A-7012-4A52-86B5-362B699D1540}.Release|Mixed Platforms.Build.0 = Release|x64
{E70FA90A-7012-4A52-86B5-362B699D1540}.Release|x64.ActiveCfg = Release|x64
{E70FA90A-7012-4A52-86B5-362B699D1540}.Release|x64.Build.0 = Release|x64
{E70FA90A-7012-4A52-86B5-362B699D1540}.Release|x86.ActiveCfg = Release|Win32
{E70FA90A-7012-4A52-86B5-362B699D1540}.Release|x86.Build.0 = Release|Win32
{9AE965C4-301E-4C01-B90F-297AF341ACC6}.Debug|Any CPU.ActiveCfg = Debug|x64
+ {9AE965C4-301E-4C01-B90F-297AF341ACC6}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
+ {9AE965C4-301E-4C01-B90F-297AF341ACC6}.Debug|Mixed Platforms.Build.0 = Debug|x64
{9AE965C4-301E-4C01-B90F-297AF341ACC6}.Debug|x64.ActiveCfg = Debug|x64
{9AE965C4-301E-4C01-B90F-297AF341ACC6}.Debug|x64.Build.0 = Debug|x64
{9AE965C4-301E-4C01-B90F-297AF341ACC6}.Debug|x86.ActiveCfg = Debug|Win32
{9AE965C4-301E-4C01-B90F-297AF341ACC6}.Debug|x86.Build.0 = Debug|Win32
{9AE965C4-301E-4C01-B90F-297AF341ACC6}.Release|Any CPU.ActiveCfg = Release|x64
+ {9AE965C4-301E-4C01-B90F-297AF341ACC6}.Release|Mixed Platforms.ActiveCfg = Release|x64
+ {9AE965C4-301E-4C01-B90F-297AF341ACC6}.Release|Mixed Platforms.Build.0 = Release|x64
{9AE965C4-301E-4C01-B90F-297AF341ACC6}.Release|x64.ActiveCfg = Release|x64
{9AE965C4-301E-4C01-B90F-297AF341ACC6}.Release|x64.Build.0 = Release|x64
{9AE965C4-301E-4C01-B90F-297AF341ACC6}.Release|x86.ActiveCfg = Release|Win32
{9AE965C4-301E-4C01-B90F-297AF341ACC6}.Release|x86.Build.0 = Release|Win32
{CC2E74B6-534A-43D8-9F16-AC03FE955000}.Debug|Any CPU.ActiveCfg = Debug|x64
+ {CC2E74B6-534A-43D8-9F16-AC03FE955000}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
+ {CC2E74B6-534A-43D8-9F16-AC03FE955000}.Debug|Mixed Platforms.Build.0 = Debug|x64
{CC2E74B6-534A-43D8-9F16-AC03FE955000}.Debug|x64.ActiveCfg = Debug|x64
{CC2E74B6-534A-43D8-9F16-AC03FE955000}.Debug|x64.Build.0 = Debug|x64
{CC2E74B6-534A-43D8-9F16-AC03FE955000}.Debug|x86.ActiveCfg = Debug|Win32
{CC2E74B6-534A-43D8-9F16-AC03FE955000}.Debug|x86.Build.0 = Debug|Win32
{CC2E74B6-534A-43D8-9F16-AC03FE955000}.Release|Any CPU.ActiveCfg = Release|Win32
+ {CC2E74B6-534A-43D8-9F16-AC03FE955000}.Release|Mixed Platforms.ActiveCfg = Release|x64
+ {CC2E74B6-534A-43D8-9F16-AC03FE955000}.Release|Mixed Platforms.Build.0 = Release|x64
{CC2E74B6-534A-43D8-9F16-AC03FE955000}.Release|x64.ActiveCfg = Release|x64
{CC2E74B6-534A-43D8-9F16-AC03FE955000}.Release|x64.Build.0 = Release|x64
{CC2E74B6-534A-43D8-9F16-AC03FE955000}.Release|x86.ActiveCfg = Release|Win32
{CC2E74B6-534A-43D8-9F16-AC03FE955000}.Release|x86.Build.0 = Release|Win32
{0B9C97D4-61B8-4294-A1DF-BA90752A1779}.Debug|Any CPU.ActiveCfg = Debug|x64
+ {0B9C97D4-61B8-4294-A1DF-BA90752A1779}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
+ {0B9C97D4-61B8-4294-A1DF-BA90752A1779}.Debug|Mixed Platforms.Build.0 = Debug|x64
{0B9C97D4-61B8-4294-A1DF-BA90752A1779}.Debug|x64.ActiveCfg = Debug|x64
{0B9C97D4-61B8-4294-A1DF-BA90752A1779}.Debug|x64.Build.0 = Debug|x64
{0B9C97D4-61B8-4294-A1DF-BA90752A1779}.Debug|x86.ActiveCfg = Debug|Win32
{0B9C97D4-61B8-4294-A1DF-BA90752A1779}.Debug|x86.Build.0 = Debug|Win32
{0B9C97D4-61B8-4294-A1DF-BA90752A1779}.Release|Any CPU.ActiveCfg = Release|x64
+ {0B9C97D4-61B8-4294-A1DF-BA90752A1779}.Release|Mixed Platforms.ActiveCfg = Release|x64
+ {0B9C97D4-61B8-4294-A1DF-BA90752A1779}.Release|Mixed Platforms.Build.0 = Release|x64
{0B9C97D4-61B8-4294-A1DF-BA90752A1779}.Release|x64.ActiveCfg = Release|x64
{0B9C97D4-61B8-4294-A1DF-BA90752A1779}.Release|x64.Build.0 = Release|x64
{0B9C97D4-61B8-4294-A1DF-BA90752A1779}.Release|x86.ActiveCfg = Release|Win32
{0B9C97D4-61B8-4294-A1DF-BA90752A1779}.Release|x86.Build.0 = Release|Win32
{4CEFBC84-C215-11DB-8314-0800200C9A66}.Debug|Any CPU.ActiveCfg = Debug|x64
+ {4CEFBC84-C215-11DB-8314-0800200C9A66}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
+ {4CEFBC84-C215-11DB-8314-0800200C9A66}.Debug|Mixed Platforms.Build.0 = Debug|x64
{4CEFBC84-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64
{4CEFBC84-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64
{4CEFBC84-C215-11DB-8314-0800200C9A66}.Debug|x86.ActiveCfg = Debug|Win32
{4CEFBC84-C215-11DB-8314-0800200C9A66}.Debug|x86.Build.0 = Debug|Win32
{4CEFBC84-C215-11DB-8314-0800200C9A66}.Release|Any CPU.ActiveCfg = Release|x64
+ {4CEFBC84-C215-11DB-8314-0800200C9A66}.Release|Mixed Platforms.ActiveCfg = Release|x64
+ {4CEFBC84-C215-11DB-8314-0800200C9A66}.Release|Mixed Platforms.Build.0 = Release|x64
{4CEFBC84-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64
{4CEFBC84-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64
{4CEFBC84-C215-11DB-8314-0800200C9A66}.Release|x86.ActiveCfg = Release|Win32
{4CEFBC84-C215-11DB-8314-0800200C9A66}.Release|x86.Build.0 = Release|Win32
{5CCCB9CF-0384-458F-BA08-72B73866840F}.Debug|Any CPU.ActiveCfg = Debug|x64
+ {5CCCB9CF-0384-458F-BA08-72B73866840F}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
+ {5CCCB9CF-0384-458F-BA08-72B73866840F}.Debug|Mixed Platforms.Build.0 = Debug|x64
{5CCCB9CF-0384-458F-BA08-72B73866840F}.Debug|x64.ActiveCfg = Debug|x64
{5CCCB9CF-0384-458F-BA08-72B73866840F}.Debug|x64.Build.0 = Debug|x64
{5CCCB9CF-0384-458F-BA08-72B73866840F}.Debug|x86.ActiveCfg = Debug|Win32
{5CCCB9CF-0384-458F-BA08-72B73866840F}.Debug|x86.Build.0 = Debug|Win32
{5CCCB9CF-0384-458F-BA08-72B73866840F}.Release|Any CPU.ActiveCfg = Release|x64
+ {5CCCB9CF-0384-458F-BA08-72B73866840F}.Release|Mixed Platforms.ActiveCfg = Release|x64
+ {5CCCB9CF-0384-458F-BA08-72B73866840F}.Release|Mixed Platforms.Build.0 = Release|x64
{5CCCB9CF-0384-458F-BA08-72B73866840F}.Release|x64.ActiveCfg = Release|x64
{5CCCB9CF-0384-458F-BA08-72B73866840F}.Release|x64.Build.0 = Release|x64
{5CCCB9CF-0384-458F-BA08-72B73866840F}.Release|x86.ActiveCfg = Release|Win32
{5CCCB9CF-0384-458F-BA08-72B73866840F}.Release|x86.Build.0 = Release|Win32
{A5A8D8FA-9E32-4010-8AAF-AE580C5AF728}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A5A8D8FA-9E32-4010-8AAF-AE580C5AF728}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {A5A8D8FA-9E32-4010-8AAF-AE580C5AF728}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+ {A5A8D8FA-9E32-4010-8AAF-AE580C5AF728}.Debug|Mixed Platforms.Build.0 = Debug|x86
{A5A8D8FA-9E32-4010-8AAF-AE580C5AF728}.Debug|x64.ActiveCfg = Debug|x64
{A5A8D8FA-9E32-4010-8AAF-AE580C5AF728}.Debug|x64.Build.0 = Debug|x64
{A5A8D8FA-9E32-4010-8AAF-AE580C5AF728}.Debug|x86.ActiveCfg = Debug|x86
{A5A8D8FA-9E32-4010-8AAF-AE580C5AF728}.Debug|x86.Build.0 = Debug|x86
{A5A8D8FA-9E32-4010-8AAF-AE580C5AF728}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A5A8D8FA-9E32-4010-8AAF-AE580C5AF728}.Release|Any CPU.Build.0 = Release|Any CPU
+ {A5A8D8FA-9E32-4010-8AAF-AE580C5AF728}.Release|Mixed Platforms.ActiveCfg = Release|x86
+ {A5A8D8FA-9E32-4010-8AAF-AE580C5AF728}.Release|Mixed Platforms.Build.0 = Release|x86
{A5A8D8FA-9E32-4010-8AAF-AE580C5AF728}.Release|x64.ActiveCfg = Release|x64
{A5A8D8FA-9E32-4010-8AAF-AE580C5AF728}.Release|x64.Build.0 = Release|x64
{A5A8D8FA-9E32-4010-8AAF-AE580C5AF728}.Release|x86.ActiveCfg = Release|x86
{A5A8D8FA-9E32-4010-8AAF-AE580C5AF728}.Release|x86.Build.0 = Release|x86
{4911BD82-49EF-4858-8B51-5394F86739A4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4911BD82-49EF-4858-8B51-5394F86739A4}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {4911BD82-49EF-4858-8B51-5394F86739A4}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
+ {4911BD82-49EF-4858-8B51-5394F86739A4}.Debug|Mixed Platforms.Build.0 = Debug|x64
{4911BD82-49EF-4858-8B51-5394F86739A4}.Debug|x64.ActiveCfg = Debug|x64
{4911BD82-49EF-4858-8B51-5394F86739A4}.Debug|x64.Build.0 = Debug|x64
{4911BD82-49EF-4858-8B51-5394F86739A4}.Debug|x86.ActiveCfg = Debug|x86
{4911BD82-49EF-4858-8B51-5394F86739A4}.Debug|x86.Build.0 = Debug|x86
{4911BD82-49EF-4858-8B51-5394F86739A4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4911BD82-49EF-4858-8B51-5394F86739A4}.Release|Any CPU.Build.0 = Release|Any CPU
+ {4911BD82-49EF-4858-8B51-5394F86739A4}.Release|Mixed Platforms.ActiveCfg = Release|x64
+ {4911BD82-49EF-4858-8B51-5394F86739A4}.Release|Mixed Platforms.Build.0 = Release|x64
{4911BD82-49EF-4858-8B51-5394F86739A4}.Release|x64.ActiveCfg = Release|x64
{4911BD82-49EF-4858-8B51-5394F86739A4}.Release|x64.Build.0 = Release|x64
{4911BD82-49EF-4858-8B51-5394F86739A4}.Release|x86.ActiveCfg = Release|x86
{4911BD82-49EF-4858-8B51-5394F86739A4}.Release|x86.Build.0 = Release|x86
{32338A04-5B6B-4C63-8EE7-C6400F73B5D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{32338A04-5B6B-4C63-8EE7-C6400F73B5D7}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {32338A04-5B6B-4C63-8EE7-C6400F73B5D7}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+ {32338A04-5B6B-4C63-8EE7-C6400F73B5D7}.Debug|Mixed Platforms.Build.0 = Debug|x86
{32338A04-5B6B-4C63-8EE7-C6400F73B5D7}.Debug|x64.ActiveCfg = Debug|x64
{32338A04-5B6B-4C63-8EE7-C6400F73B5D7}.Debug|x64.Build.0 = Debug|x64
{32338A04-5B6B-4C63-8EE7-C6400F73B5D7}.Debug|x86.ActiveCfg = Debug|x86
{32338A04-5B6B-4C63-8EE7-C6400F73B5D7}.Debug|x86.Build.0 = Debug|x86
{32338A04-5B6B-4C63-8EE7-C6400F73B5D7}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {32338A04-5B6B-4C63-8EE7-C6400F73B5D7}.Release|Mixed Platforms.ActiveCfg = Release|x86
+ {32338A04-5B6B-4C63-8EE7-C6400F73B5D7}.Release|Mixed Platforms.Build.0 = Release|x86
{32338A04-5B6B-4C63-8EE7-C6400F73B5D7}.Release|x64.ActiveCfg = Release|x64
{32338A04-5B6B-4C63-8EE7-C6400F73B5D7}.Release|x64.Build.0 = Release|x64
{32338A04-5B6B-4C63-8EE7-C6400F73B5D7}.Release|x86.ActiveCfg = Release|x86
{32338A04-5B6B-4C63-8EE7-C6400F73B5D7}.Release|x86.Build.0 = Release|x86
{6458A13A-30EF-45A9-9D58-E5031B17BEE2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6458A13A-30EF-45A9-9D58-E5031B17BEE2}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {6458A13A-30EF-45A9-9D58-E5031B17BEE2}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+ {6458A13A-30EF-45A9-9D58-E5031B17BEE2}.Debug|Mixed Platforms.Build.0 = Debug|x86
{6458A13A-30EF-45A9-9D58-E5031B17BEE2}.Debug|x64.ActiveCfg = Debug|x64
{6458A13A-30EF-45A9-9D58-E5031B17BEE2}.Debug|x64.Build.0 = Debug|x64
{6458A13A-30EF-45A9-9D58-E5031B17BEE2}.Debug|x86.ActiveCfg = Debug|x86
{6458A13A-30EF-45A9-9D58-E5031B17BEE2}.Debug|x86.Build.0 = Debug|x86
{6458A13A-30EF-45A9-9D58-E5031B17BEE2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6458A13A-30EF-45A9-9D58-E5031B17BEE2}.Release|Any CPU.Build.0 = Release|Any CPU
+ {6458A13A-30EF-45A9-9D58-E5031B17BEE2}.Release|Mixed Platforms.ActiveCfg = Release|x86
+ {6458A13A-30EF-45A9-9D58-E5031B17BEE2}.Release|Mixed Platforms.Build.0 = Release|x86
{6458A13A-30EF-45A9-9D58-E5031B17BEE2}.Release|x64.ActiveCfg = Release|x64
{6458A13A-30EF-45A9-9D58-E5031B17BEE2}.Release|x64.Build.0 = Release|x64
{6458A13A-30EF-45A9-9D58-E5031B17BEE2}.Release|x86.ActiveCfg = Release|x86
{6458A13A-30EF-45A9-9D58-E5031B17BEE2}.Release|x86.Build.0 = Release|x86
{F2EC7193-D5E5-4252-9803-5CEB407E910F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F2EC7193-D5E5-4252-9803-5CEB407E910F}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {F2EC7193-D5E5-4252-9803-5CEB407E910F}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+ {F2EC7193-D5E5-4252-9803-5CEB407E910F}.Debug|Mixed Platforms.Build.0 = Debug|x86
{F2EC7193-D5E5-4252-9803-5CEB407E910F}.Debug|x64.ActiveCfg = Debug|x64
{F2EC7193-D5E5-4252-9803-5CEB407E910F}.Debug|x64.Build.0 = Debug|x64
{F2EC7193-D5E5-4252-9803-5CEB407E910F}.Debug|x86.ActiveCfg = Debug|x86
{F2EC7193-D5E5-4252-9803-5CEB407E910F}.Debug|x86.Build.0 = Debug|x86
{F2EC7193-D5E5-4252-9803-5CEB407E910F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F2EC7193-D5E5-4252-9803-5CEB407E910F}.Release|Any CPU.Build.0 = Release|Any CPU
+ {F2EC7193-D5E5-4252-9803-5CEB407E910F}.Release|Mixed Platforms.ActiveCfg = Release|x86
+ {F2EC7193-D5E5-4252-9803-5CEB407E910F}.Release|Mixed Platforms.Build.0 = Release|x86
{F2EC7193-D5E5-4252-9803-5CEB407E910F}.Release|x64.ActiveCfg = Release|x64
{F2EC7193-D5E5-4252-9803-5CEB407E910F}.Release|x64.Build.0 = Release|x64
{F2EC7193-D5E5-4252-9803-5CEB407E910F}.Release|x86.ActiveCfg = Release|x86
{F2EC7193-D5E5-4252-9803-5CEB407E910F}.Release|x86.Build.0 = Release|x86
{8427CAA5-80B8-4952-9A68-5F3DFCFBDF40}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {8427CAA5-80B8-4952-9A68-5F3DFCFBDF40}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+ {8427CAA5-80B8-4952-9A68-5F3DFCFBDF40}.Debug|Mixed Platforms.Build.0 = Debug|x86
{8427CAA5-80B8-4952-9A68-5F3DFCFBDF40}.Debug|x64.ActiveCfg = Debug|x64
{8427CAA5-80B8-4952-9A68-5F3DFCFBDF40}.Debug|x64.Build.0 = Debug|x64
{8427CAA5-80B8-4952-9A68-5F3DFCFBDF40}.Debug|x86.ActiveCfg = Debug|x86
{8427CAA5-80B8-4952-9A68-5F3DFCFBDF40}.Debug|x86.Build.0 = Debug|x86
{8427CAA5-80B8-4952-9A68-5F3DFCFBDF40}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {8427CAA5-80B8-4952-9A68-5F3DFCFBDF40}.Release|Mixed Platforms.ActiveCfg = Release|x86
+ {8427CAA5-80B8-4952-9A68-5F3DFCFBDF40}.Release|Mixed Platforms.Build.0 = Release|x86
{8427CAA5-80B8-4952-9A68-5F3DFCFBDF40}.Release|x64.ActiveCfg = Release|x64
{8427CAA5-80B8-4952-9A68-5F3DFCFBDF40}.Release|x64.Build.0 = Release|x64
{8427CAA5-80B8-4952-9A68-5F3DFCFBDF40}.Release|x86.ActiveCfg = Release|x86
{8427CAA5-80B8-4952-9A68-5F3DFCFBDF40}.Release|x86.Build.0 = Release|x86
{8A0426FA-0BC2-4C49-A6E5-1F9A68156F19}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8A0426FA-0BC2-4C49-A6E5-1F9A68156F19}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {8A0426FA-0BC2-4C49-A6E5-1F9A68156F19}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+ {8A0426FA-0BC2-4C49-A6E5-1F9A68156F19}.Debug|Mixed Platforms.Build.0 = Debug|x86
{8A0426FA-0BC2-4C49-A6E5-1F9A68156F19}.Debug|x64.ActiveCfg = Debug|x64
{8A0426FA-0BC2-4C49-A6E5-1F9A68156F19}.Debug|x64.Build.0 = Debug|x64
{8A0426FA-0BC2-4C49-A6E5-1F9A68156F19}.Debug|x86.ActiveCfg = Debug|x86
{8A0426FA-0BC2-4C49-A6E5-1F9A68156F19}.Debug|x86.Build.0 = Debug|x86
{8A0426FA-0BC2-4C49-A6E5-1F9A68156F19}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8A0426FA-0BC2-4C49-A6E5-1F9A68156F19}.Release|Any CPU.Build.0 = Release|Any CPU
+ {8A0426FA-0BC2-4C49-A6E5-1F9A68156F19}.Release|Mixed Platforms.ActiveCfg = Release|x86
+ {8A0426FA-0BC2-4C49-A6E5-1F9A68156F19}.Release|Mixed Platforms.Build.0 = Release|x86
{8A0426FA-0BC2-4C49-A6E5-1F9A68156F19}.Release|x64.ActiveCfg = Release|x64
{8A0426FA-0BC2-4C49-A6E5-1F9A68156F19}.Release|x64.Build.0 = Release|x64
{8A0426FA-0BC2-4C49-A6E5-1F9A68156F19}.Release|x86.ActiveCfg = Release|x86
{8A0426FA-0BC2-4C49-A6E5-1F9A68156F19}.Release|x86.Build.0 = Release|x86
{A574F3B1-E38B-4EE4-9394-49D6E2DF52EA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A574F3B1-E38B-4EE4-9394-49D6E2DF52EA}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {A574F3B1-E38B-4EE4-9394-49D6E2DF52EA}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+ {A574F3B1-E38B-4EE4-9394-49D6E2DF52EA}.Debug|Mixed Platforms.Build.0 = Debug|x86
{A574F3B1-E38B-4EE4-9394-49D6E2DF52EA}.Debug|x64.ActiveCfg = Debug|x64
{A574F3B1-E38B-4EE4-9394-49D6E2DF52EA}.Debug|x64.Build.0 = Debug|x64
{A574F3B1-E38B-4EE4-9394-49D6E2DF52EA}.Debug|x86.ActiveCfg = Debug|x86
{A574F3B1-E38B-4EE4-9394-49D6E2DF52EA}.Debug|x86.Build.0 = Debug|x86
{A574F3B1-E38B-4EE4-9394-49D6E2DF52EA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A574F3B1-E38B-4EE4-9394-49D6E2DF52EA}.Release|Any CPU.Build.0 = Release|Any CPU
+ {A574F3B1-E38B-4EE4-9394-49D6E2DF52EA}.Release|Mixed Platforms.ActiveCfg = Release|x86
+ {A574F3B1-E38B-4EE4-9394-49D6E2DF52EA}.Release|Mixed Platforms.Build.0 = Release|x86
{A574F3B1-E38B-4EE4-9394-49D6E2DF52EA}.Release|x64.ActiveCfg = Release|x64
{A574F3B1-E38B-4EE4-9394-49D6E2DF52EA}.Release|x64.Build.0 = Release|x64
{A574F3B1-E38B-4EE4-9394-49D6E2DF52EA}.Release|x86.ActiveCfg = Release|x86
{A574F3B1-E38B-4EE4-9394-49D6E2DF52EA}.Release|x86.Build.0 = Release|x86
{B75FA7AD-968E-4990-B342-1B4B17C850DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B75FA7AD-968E-4990-B342-1B4B17C850DF}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {B75FA7AD-968E-4990-B342-1B4B17C850DF}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+ {B75FA7AD-968E-4990-B342-1B4B17C850DF}.Debug|Mixed Platforms.Build.0 = Debug|x86
{B75FA7AD-968E-4990-B342-1B4B17C850DF}.Debug|x64.ActiveCfg = Debug|x64
{B75FA7AD-968E-4990-B342-1B4B17C850DF}.Debug|x64.Build.0 = Debug|x64
{B75FA7AD-968E-4990-B342-1B4B17C850DF}.Debug|x86.ActiveCfg = Debug|x86
{B75FA7AD-968E-4990-B342-1B4B17C850DF}.Debug|x86.Build.0 = Debug|x86
{B75FA7AD-968E-4990-B342-1B4B17C850DF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B75FA7AD-968E-4990-B342-1B4B17C850DF}.Release|Any CPU.Build.0 = Release|Any CPU
+ {B75FA7AD-968E-4990-B342-1B4B17C850DF}.Release|Mixed Platforms.ActiveCfg = Release|x86
+ {B75FA7AD-968E-4990-B342-1B4B17C850DF}.Release|Mixed Platforms.Build.0 = Release|x86
{B75FA7AD-968E-4990-B342-1B4B17C850DF}.Release|x64.ActiveCfg = Release|x64
{B75FA7AD-968E-4990-B342-1B4B17C850DF}.Release|x64.Build.0 = Release|x64
{B75FA7AD-968E-4990-B342-1B4B17C850DF}.Release|x86.ActiveCfg = Release|x86
{B75FA7AD-968E-4990-B342-1B4B17C850DF}.Release|x86.Build.0 = Release|x86
{F2DFEB00-BB35-4665-85EA-CB8C7729A6B7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F2DFEB00-BB35-4665-85EA-CB8C7729A6B7}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {F2DFEB00-BB35-4665-85EA-CB8C7729A6B7}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+ {F2DFEB00-BB35-4665-85EA-CB8C7729A6B7}.Debug|Mixed Platforms.Build.0 = Debug|x86
{F2DFEB00-BB35-4665-85EA-CB8C7729A6B7}.Debug|x64.ActiveCfg = Debug|x64
{F2DFEB00-BB35-4665-85EA-CB8C7729A6B7}.Debug|x64.Build.0 = Debug|x64
{F2DFEB00-BB35-4665-85EA-CB8C7729A6B7}.Debug|x86.ActiveCfg = Debug|x86
{F2DFEB00-BB35-4665-85EA-CB8C7729A6B7}.Debug|x86.Build.0 = Debug|x86
{F2DFEB00-BB35-4665-85EA-CB8C7729A6B7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F2DFEB00-BB35-4665-85EA-CB8C7729A6B7}.Release|Any CPU.Build.0 = Release|Any CPU
+ {F2DFEB00-BB35-4665-85EA-CB8C7729A6B7}.Release|Mixed Platforms.ActiveCfg = Release|x86
+ {F2DFEB00-BB35-4665-85EA-CB8C7729A6B7}.Release|Mixed Platforms.Build.0 = Release|x86
{F2DFEB00-BB35-4665-85EA-CB8C7729A6B7}.Release|x64.ActiveCfg = Release|x64
{F2DFEB00-BB35-4665-85EA-CB8C7729A6B7}.Release|x64.Build.0 = Release|x64
{F2DFEB00-BB35-4665-85EA-CB8C7729A6B7}.Release|x86.ActiveCfg = Release|x86
{F2DFEB00-BB35-4665-85EA-CB8C7729A6B7}.Release|x86.Build.0 = Release|x86
{A05B6AA6-0EC3-495D-BCC4-ECE1210071A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A05B6AA6-0EC3-495D-BCC4-ECE1210071A8}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {A05B6AA6-0EC3-495D-BCC4-ECE1210071A8}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+ {A05B6AA6-0EC3-495D-BCC4-ECE1210071A8}.Debug|Mixed Platforms.Build.0 = Debug|x86
{A05B6AA6-0EC3-495D-BCC4-ECE1210071A8}.Debug|x64.ActiveCfg = Debug|x64
{A05B6AA6-0EC3-495D-BCC4-ECE1210071A8}.Debug|x64.Build.0 = Debug|x64
{A05B6AA6-0EC3-495D-BCC4-ECE1210071A8}.Debug|x86.ActiveCfg = Debug|x86
{A05B6AA6-0EC3-495D-BCC4-ECE1210071A8}.Debug|x86.Build.0 = Debug|x86
{A05B6AA6-0EC3-495D-BCC4-ECE1210071A8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A05B6AA6-0EC3-495D-BCC4-ECE1210071A8}.Release|Any CPU.Build.0 = Release|Any CPU
+ {A05B6AA6-0EC3-495D-BCC4-ECE1210071A8}.Release|Mixed Platforms.ActiveCfg = Release|x86
+ {A05B6AA6-0EC3-495D-BCC4-ECE1210071A8}.Release|Mixed Platforms.Build.0 = Release|x86
{A05B6AA6-0EC3-495D-BCC4-ECE1210071A8}.Release|x64.ActiveCfg = Release|x64
{A05B6AA6-0EC3-495D-BCC4-ECE1210071A8}.Release|x64.Build.0 = Release|x64
{A05B6AA6-0EC3-495D-BCC4-ECE1210071A8}.Release|x86.ActiveCfg = Release|x86
{A05B6AA6-0EC3-495D-BCC4-ECE1210071A8}.Release|x86.Build.0 = Release|x86
{8CF07381-BEA2-4AFC-B3DD-9B2F21C65A3A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8CF07381-BEA2-4AFC-B3DD-9B2F21C65A3A}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {8CF07381-BEA2-4AFC-B3DD-9B2F21C65A3A}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+ {8CF07381-BEA2-4AFC-B3DD-9B2F21C65A3A}.Debug|Mixed Platforms.Build.0 = Debug|x86
{8CF07381-BEA2-4AFC-B3DD-9B2F21C65A3A}.Debug|x64.ActiveCfg = Debug|x64
{8CF07381-BEA2-4AFC-B3DD-9B2F21C65A3A}.Debug|x64.Build.0 = Debug|x64
{8CF07381-BEA2-4AFC-B3DD-9B2F21C65A3A}.Debug|x86.ActiveCfg = Debug|x86
{8CF07381-BEA2-4AFC-B3DD-9B2F21C65A3A}.Debug|x86.Build.0 = Debug|x86
{8CF07381-BEA2-4AFC-B3DD-9B2F21C65A3A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8CF07381-BEA2-4AFC-B3DD-9B2F21C65A3A}.Release|Any CPU.Build.0 = Release|Any CPU
+ {8CF07381-BEA2-4AFC-B3DD-9B2F21C65A3A}.Release|Mixed Platforms.ActiveCfg = Release|x86
+ {8CF07381-BEA2-4AFC-B3DD-9B2F21C65A3A}.Release|Mixed Platforms.Build.0 = Release|x86
{8CF07381-BEA2-4AFC-B3DD-9B2F21C65A3A}.Release|x64.ActiveCfg = Release|x64
{8CF07381-BEA2-4AFC-B3DD-9B2F21C65A3A}.Release|x64.Build.0 = Release|x64
{8CF07381-BEA2-4AFC-B3DD-9B2F21C65A3A}.Release|x86.ActiveCfg = Release|x86
{8CF07381-BEA2-4AFC-B3DD-9B2F21C65A3A}.Release|x86.Build.0 = Release|x86
{9253A314-1821-42BF-B02F-2BF986B1765D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9253A314-1821-42BF-B02F-2BF986B1765D}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {9253A314-1821-42BF-B02F-2BF986B1765D}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+ {9253A314-1821-42BF-B02F-2BF986B1765D}.Debug|Mixed Platforms.Build.0 = Debug|x86
{9253A314-1821-42BF-B02F-2BF986B1765D}.Debug|x64.ActiveCfg = Debug|x64
{9253A314-1821-42BF-B02F-2BF986B1765D}.Debug|x64.Build.0 = Debug|x64
{9253A314-1821-42BF-B02F-2BF986B1765D}.Debug|x86.ActiveCfg = Debug|x86
{9253A314-1821-42BF-B02F-2BF986B1765D}.Debug|x86.Build.0 = Debug|x86
{9253A314-1821-42BF-B02F-2BF986B1765D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9253A314-1821-42BF-B02F-2BF986B1765D}.Release|Any CPU.Build.0 = Release|Any CPU
+ {9253A314-1821-42BF-B02F-2BF986B1765D}.Release|Mixed Platforms.ActiveCfg = Release|x86
+ {9253A314-1821-42BF-B02F-2BF986B1765D}.Release|Mixed Platforms.Build.0 = Release|x86
{9253A314-1821-42BF-B02F-2BF986B1765D}.Release|x64.ActiveCfg = Release|x64
{9253A314-1821-42BF-B02F-2BF986B1765D}.Release|x64.Build.0 = Release|x64
{9253A314-1821-42BF-B02F-2BF986B1765D}.Release|x86.ActiveCfg = Release|x86
{9253A314-1821-42BF-B02F-2BF986B1765D}.Release|x86.Build.0 = Release|x86
{1DD41038-D885-46C5-8DDE-E0B82F066584}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1DD41038-D885-46C5-8DDE-E0B82F066584}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {1DD41038-D885-46C5-8DDE-E0B82F066584}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
+ {1DD41038-D885-46C5-8DDE-E0B82F066584}.Debug|Mixed Platforms.Build.0 = Debug|x64
{1DD41038-D885-46C5-8DDE-E0B82F066584}.Debug|x64.ActiveCfg = Debug|x64
{1DD41038-D885-46C5-8DDE-E0B82F066584}.Debug|x64.Build.0 = Debug|x64
{1DD41038-D885-46C5-8DDE-E0B82F066584}.Debug|x86.ActiveCfg = Debug|x86
{1DD41038-D885-46C5-8DDE-E0B82F066584}.Debug|x86.Build.0 = Debug|x86
{1DD41038-D885-46C5-8DDE-E0B82F066584}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1DD41038-D885-46C5-8DDE-E0B82F066584}.Release|Any CPU.Build.0 = Release|Any CPU
+ {1DD41038-D885-46C5-8DDE-E0B82F066584}.Release|Mixed Platforms.ActiveCfg = Release|x64
+ {1DD41038-D885-46C5-8DDE-E0B82F066584}.Release|Mixed Platforms.Build.0 = Release|x64
{1DD41038-D885-46C5-8DDE-E0B82F066584}.Release|x64.ActiveCfg = Release|x64
{1DD41038-D885-46C5-8DDE-E0B82F066584}.Release|x64.Build.0 = Release|x64
{1DD41038-D885-46C5-8DDE-E0B82F066584}.Release|x86.ActiveCfg = Release|x86
{1DD41038-D885-46C5-8DDE-E0B82F066584}.Release|x86.Build.0 = Release|x86
{5802C7E9-157E-4124-946D-70B5AE48A5A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5802C7E9-157E-4124-946D-70B5AE48A5A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {5802C7E9-157E-4124-946D-70B5AE48A5A1}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+ {5802C7E9-157E-4124-946D-70B5AE48A5A1}.Debug|Mixed Platforms.Build.0 = Debug|x86
{5802C7E9-157E-4124-946D-70B5AE48A5A1}.Debug|x64.ActiveCfg = Debug|x64
{5802C7E9-157E-4124-946D-70B5AE48A5A1}.Debug|x64.Build.0 = Debug|x64
{5802C7E9-157E-4124-946D-70B5AE48A5A1}.Debug|x86.ActiveCfg = Debug|x86
{5802C7E9-157E-4124-946D-70B5AE48A5A1}.Debug|x86.Build.0 = Debug|x86
{5802C7E9-157E-4124-946D-70B5AE48A5A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5802C7E9-157E-4124-946D-70B5AE48A5A1}.Release|Any CPU.Build.0 = Release|Any CPU
+ {5802C7E9-157E-4124-946D-70B5AE48A5A1}.Release|Mixed Platforms.ActiveCfg = Release|x86
+ {5802C7E9-157E-4124-946D-70B5AE48A5A1}.Release|Mixed Platforms.Build.0 = Release|x86
{5802C7E9-157E-4124-946D-70B5AE48A5A1}.Release|x64.ActiveCfg = Release|x64
{5802C7E9-157E-4124-946D-70B5AE48A5A1}.Release|x64.Build.0 = Release|x64
{5802C7E9-157E-4124-946D-70B5AE48A5A1}.Release|x86.ActiveCfg = Release|x86
{5802C7E9-157E-4124-946D-70B5AE48A5A1}.Release|x86.Build.0 = Release|x86
{74C2036B-2C9B-4FC8-B7BD-AE81A8DCE533}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{74C2036B-2C9B-4FC8-B7BD-AE81A8DCE533}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {74C2036B-2C9B-4FC8-B7BD-AE81A8DCE533}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
+ {74C2036B-2C9B-4FC8-B7BD-AE81A8DCE533}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{74C2036B-2C9B-4FC8-B7BD-AE81A8DCE533}.Debug|x64.ActiveCfg = Debug|Any CPU
{74C2036B-2C9B-4FC8-B7BD-AE81A8DCE533}.Debug|x64.Build.0 = Debug|Any CPU
{74C2036B-2C9B-4FC8-B7BD-AE81A8DCE533}.Debug|x86.ActiveCfg = Debug|Any CPU
{74C2036B-2C9B-4FC8-B7BD-AE81A8DCE533}.Debug|x86.Build.0 = Debug|Any CPU
{74C2036B-2C9B-4FC8-B7BD-AE81A8DCE533}.Release|Any CPU.ActiveCfg = Release|Any CPU
{74C2036B-2C9B-4FC8-B7BD-AE81A8DCE533}.Release|Any CPU.Build.0 = Release|Any CPU
+ {74C2036B-2C9B-4FC8-B7BD-AE81A8DCE533}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
+ {74C2036B-2C9B-4FC8-B7BD-AE81A8DCE533}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{74C2036B-2C9B-4FC8-B7BD-AE81A8DCE533}.Release|x64.ActiveCfg = Release|Any CPU
{74C2036B-2C9B-4FC8-B7BD-AE81A8DCE533}.Release|x64.Build.0 = Release|Any CPU
{74C2036B-2C9B-4FC8-B7BD-AE81A8DCE533}.Release|x86.ActiveCfg = Release|Any CPU
{74C2036B-2C9B-4FC8-B7BD-AE81A8DCE533}.Release|x86.Build.0 = Release|Any CPU
{39B43BBB-BAFC-4D85-9BEA-3BCB7EFED89C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{39B43BBB-BAFC-4D85-9BEA-3BCB7EFED89C}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {39B43BBB-BAFC-4D85-9BEA-3BCB7EFED89C}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+ {39B43BBB-BAFC-4D85-9BEA-3BCB7EFED89C}.Debug|Mixed Platforms.Build.0 = Debug|x86
{39B43BBB-BAFC-4D85-9BEA-3BCB7EFED89C}.Debug|x64.ActiveCfg = Debug|x64
{39B43BBB-BAFC-4D85-9BEA-3BCB7EFED89C}.Debug|x64.Build.0 = Debug|x64
{39B43BBB-BAFC-4D85-9BEA-3BCB7EFED89C}.Debug|x86.ActiveCfg = Debug|x86
{39B43BBB-BAFC-4D85-9BEA-3BCB7EFED89C}.Debug|x86.Build.0 = Debug|x86
{39B43BBB-BAFC-4D85-9BEA-3BCB7EFED89C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{39B43BBB-BAFC-4D85-9BEA-3BCB7EFED89C}.Release|Any CPU.Build.0 = Release|Any CPU
+ {39B43BBB-BAFC-4D85-9BEA-3BCB7EFED89C}.Release|Mixed Platforms.ActiveCfg = Release|x86
+ {39B43BBB-BAFC-4D85-9BEA-3BCB7EFED89C}.Release|Mixed Platforms.Build.0 = Release|x86
{39B43BBB-BAFC-4D85-9BEA-3BCB7EFED89C}.Release|x64.ActiveCfg = Release|x64
{39B43BBB-BAFC-4D85-9BEA-3BCB7EFED89C}.Release|x64.Build.0 = Release|x64
{39B43BBB-BAFC-4D85-9BEA-3BCB7EFED89C}.Release|x86.ActiveCfg = Release|x86
{39B43BBB-BAFC-4D85-9BEA-3BCB7EFED89C}.Release|x86.Build.0 = Release|x86
{5ADCFD6D-BFEA-4B10-BB45-9083BBB56AF4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5ADCFD6D-BFEA-4B10-BB45-9083BBB56AF4}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {5ADCFD6D-BFEA-4B10-BB45-9083BBB56AF4}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
+ {5ADCFD6D-BFEA-4B10-BB45-9083BBB56AF4}.Debug|Mixed Platforms.Build.0 = Debug|x64
{5ADCFD6D-BFEA-4B10-BB45-9083BBB56AF4}.Debug|x64.ActiveCfg = Debug|x64
{5ADCFD6D-BFEA-4B10-BB45-9083BBB56AF4}.Debug|x64.Build.0 = Debug|x64
{5ADCFD6D-BFEA-4B10-BB45-9083BBB56AF4}.Debug|x86.ActiveCfg = Debug|Any CPU
{5ADCFD6D-BFEA-4B10-BB45-9083BBB56AF4}.Debug|x86.Build.0 = Debug|Any CPU
{5ADCFD6D-BFEA-4B10-BB45-9083BBB56AF4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5ADCFD6D-BFEA-4B10-BB45-9083BBB56AF4}.Release|Any CPU.Build.0 = Release|Any CPU
+ {5ADCFD6D-BFEA-4B10-BB45-9083BBB56AF4}.Release|Mixed Platforms.ActiveCfg = Release|x64
+ {5ADCFD6D-BFEA-4B10-BB45-9083BBB56AF4}.Release|Mixed Platforms.Build.0 = Release|x64
{5ADCFD6D-BFEA-4B10-BB45-9083BBB56AF4}.Release|x64.ActiveCfg = Release|x64
{5ADCFD6D-BFEA-4B10-BB45-9083BBB56AF4}.Release|x64.Build.0 = Release|x64
{5ADCFD6D-BFEA-4B10-BB45-9083BBB56AF4}.Release|x86.ActiveCfg = Release|Any CPU
{B3DF599C-1C8F-451D-91E4-DD766210DA1F}.Debug|Any CPU.ActiveCfg = Debug|Win32
+ {B3DF599C-1C8F-451D-91E4-DD766210DA1F}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
+ {B3DF599C-1C8F-451D-91E4-DD766210DA1F}.Debug|Mixed Platforms.Build.0 = Debug|x64
{B3DF599C-1C8F-451D-91E4-DD766210DA1F}.Debug|x64.ActiveCfg = Debug|x64
{B3DF599C-1C8F-451D-91E4-DD766210DA1F}.Debug|x64.Build.0 = Debug|x64
{B3DF599C-1C8F-451D-91E4-DD766210DA1F}.Debug|x86.ActiveCfg = Debug|Win32
{B3DF599C-1C8F-451D-91E4-DD766210DA1F}.Debug|x86.Build.0 = Debug|Win32
{B3DF599C-1C8F-451D-91E4-DD766210DA1F}.Release|Any CPU.ActiveCfg = Release|Win32
+ {B3DF599C-1C8F-451D-91E4-DD766210DA1F}.Release|Mixed Platforms.ActiveCfg = Release|x64
+ {B3DF599C-1C8F-451D-91E4-DD766210DA1F}.Release|Mixed Platforms.Build.0 = Release|x64
{B3DF599C-1C8F-451D-91E4-DD766210DA1F}.Release|x64.ActiveCfg = Release|x64
{B3DF599C-1C8F-451D-91E4-DD766210DA1F}.Release|x64.Build.0 = Release|x64
{B3DF599C-1C8F-451D-91E4-DD766210DA1F}.Release|x86.ActiveCfg = Release|Win32
{B3DF599C-1C8F-451D-91E4-DD766210DA1F}.Release|x86.Build.0 = Release|Win32
{1D1E99BC-6D22-41C0-BD94-FF4DD5EC725B}.Debug|Any CPU.ActiveCfg = Debug|Win32
+ {1D1E99BC-6D22-41C0-BD94-FF4DD5EC725B}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
+ {1D1E99BC-6D22-41C0-BD94-FF4DD5EC725B}.Debug|Mixed Platforms.Build.0 = Debug|x64
{1D1E99BC-6D22-41C0-BD94-FF4DD5EC725B}.Debug|x64.ActiveCfg = Debug|x64
{1D1E99BC-6D22-41C0-BD94-FF4DD5EC725B}.Debug|x64.Build.0 = Debug|x64
{1D1E99BC-6D22-41C0-BD94-FF4DD5EC725B}.Debug|x86.ActiveCfg = Debug|Win32
{1D1E99BC-6D22-41C0-BD94-FF4DD5EC725B}.Debug|x86.Build.0 = Debug|Win32
{1D1E99BC-6D22-41C0-BD94-FF4DD5EC725B}.Release|Any CPU.ActiveCfg = Release|Win32
+ {1D1E99BC-6D22-41C0-BD94-FF4DD5EC725B}.Release|Mixed Platforms.ActiveCfg = Release|x64
+ {1D1E99BC-6D22-41C0-BD94-FF4DD5EC725B}.Release|Mixed Platforms.Build.0 = Release|x64
{1D1E99BC-6D22-41C0-BD94-FF4DD5EC725B}.Release|x64.ActiveCfg = Release|x64
{1D1E99BC-6D22-41C0-BD94-FF4DD5EC725B}.Release|x64.Build.0 = Release|x64
{1D1E99BC-6D22-41C0-BD94-FF4DD5EC725B}.Release|x86.ActiveCfg = Release|Win32
{1D1E99BC-6D22-41C0-BD94-FF4DD5EC725B}.Release|x86.Build.0 = Release|Win32
{115CC5B0-0385-41CD-8A23-6A7EA4C51926}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{115CC5B0-0385-41CD-8A23-6A7EA4C51926}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {115CC5B0-0385-41CD-8A23-6A7EA4C51926}.Debug|Mixed Platforms.ActiveCfg = Debug|x64
+ {115CC5B0-0385-41CD-8A23-6A7EA4C51926}.Debug|Mixed Platforms.Build.0 = Debug|x64
{115CC5B0-0385-41CD-8A23-6A7EA4C51926}.Debug|x64.ActiveCfg = Debug|x64
{115CC5B0-0385-41CD-8A23-6A7EA4C51926}.Debug|x64.Build.0 = Debug|x64
{115CC5B0-0385-41CD-8A23-6A7EA4C51926}.Debug|x86.ActiveCfg = Debug|x86
{115CC5B0-0385-41CD-8A23-6A7EA4C51926}.Debug|x86.Build.0 = Debug|x86
{115CC5B0-0385-41CD-8A23-6A7EA4C51926}.Release|Any CPU.ActiveCfg = Release|Any CPU
{115CC5B0-0385-41CD-8A23-6A7EA4C51926}.Release|Any CPU.Build.0 = Release|Any CPU
+ {115CC5B0-0385-41CD-8A23-6A7EA4C51926}.Release|Mixed Platforms.ActiveCfg = Release|x64
+ {115CC5B0-0385-41CD-8A23-6A7EA4C51926}.Release|Mixed Platforms.Build.0 = Release|x64
{115CC5B0-0385-41CD-8A23-6A7EA4C51926}.Release|x64.ActiveCfg = Release|x64
{115CC5B0-0385-41CD-8A23-6A7EA4C51926}.Release|x64.Build.0 = Release|x64
{115CC5B0-0385-41CD-8A23-6A7EA4C51926}.Release|x86.ActiveCfg = Release|x86
{115CC5B0-0385-41CD-8A23-6A7EA4C51926}.Release|x86.Build.0 = Release|x86
{4CC18776-125E-4318-9D24-D60110AD9697}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4CC18776-125E-4318-9D24-D60110AD9697}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {4CC18776-125E-4318-9D24-D60110AD9697}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
+ {4CC18776-125E-4318-9D24-D60110AD9697}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{4CC18776-125E-4318-9D24-D60110AD9697}.Debug|x64.ActiveCfg = Debug|Any CPU
{4CC18776-125E-4318-9D24-D60110AD9697}.Debug|x64.Build.0 = Debug|Any CPU
{4CC18776-125E-4318-9D24-D60110AD9697}.Debug|x86.ActiveCfg = Debug|Any CPU
{4CC18776-125E-4318-9D24-D60110AD9697}.Debug|x86.Build.0 = Debug|Any CPU
{4CC18776-125E-4318-9D24-D60110AD9697}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4CC18776-125E-4318-9D24-D60110AD9697}.Release|Any CPU.Build.0 = Release|Any CPU
+ {4CC18776-125E-4318-9D24-D60110AD9697}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
+ {4CC18776-125E-4318-9D24-D60110AD9697}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{4CC18776-125E-4318-9D24-D60110AD9697}.Release|x64.ActiveCfg = Release|Any CPU
{4CC18776-125E-4318-9D24-D60110AD9697}.Release|x64.Build.0 = Release|Any CPU
{4CC18776-125E-4318-9D24-D60110AD9697}.Release|x86.ActiveCfg = Release|Any CPU
diff --git a/CUETools/ReadMe.txt b/CUETools/ReadMe.txt
index 27dcfca..5b05054 100644
--- a/CUETools/ReadMe.txt
+++ b/CUETools/ReadMe.txt
@@ -30,6 +30,7 @@ characters and replace spaces audio filename settings also apply to %D and %C
here:
%D - Album artist
%C - Album title
+ %Y - Album release year
%F - Filename of the input CUE sheet without extension
%0 - Full directory of the input CUE sheet
%x (where x is an integer) - Part of the directory of the input CUE sheet.
diff --git a/CUETools/Resources/cue_32.ico b/CUETools/Resources/cue_32.ico
new file mode 100644
index 0000000..4126720
Binary files /dev/null and b/CUETools/Resources/cue_32.ico differ
diff --git a/CUETools/frmAbout.resx b/CUETools/frmAbout.resx
index fff282d..e559e32 100644
--- a/CUETools/frmAbout.resx
+++ b/CUETools/frmAbout.resx
@@ -148,7 +148,7 @@
180, 228
- About CUETools v1.9.4
+ About CUETools v1.9.5
36, 28
@@ -273,4 +273,7 @@ hdcd.dll (c) Christopher Key
True
+
+ Russian (Russia)
+
\ No newline at end of file
diff --git a/CUETools/frmAbout.ru-RU.resx b/CUETools/frmAbout.ru-RU.resx
index cb8a3e5..3596c98 100644
--- a/CUETools/frmAbout.ru-RU.resx
+++ b/CUETools/frmAbout.ru-RU.resx
@@ -156,6 +156,6 @@ hdcd.dll (c) Christopher Key
439, 296
- CUETools v1.9.4: Π ΠΏΡΠΎΠ³ΡΠ°ΠΌΠΌΠ΅
+ CUETools v1.9.5: Π ΠΏΡΠΎΠ³ΡΠ°ΠΌΠΌΠ΅
\ No newline at end of file
diff --git a/CUETools/frmCUETools.de-DE.resx b/CUETools/frmCUETools.de-DE.resx
index 843af15..25bd19d 100644
--- a/CUETools/frmCUETools.de-DE.resx
+++ b/CUETools/frmCUETools.de-DE.resx
@@ -304,15 +304,21 @@
-
- Audioausgabe
-
Ausgabepfad
+
+ 61, 117
+
+
+
+
+
+
+
@@ -370,6 +376,9 @@
+
+ 6, 88
+
6, 37
@@ -481,24 +490,43 @@
-
- >
-
-
- TAK
-
-
- MP3
-
-
- OGG
-
FreeDB-Abfrage
+
+
+
+
+
+ AAABAAEAEBAAAAAACABoBQAAFgAAACgAAAAQAAAAIAAAAAEACAAAAAAAAAEAAAAAAAAAAAAAAAEAAAAB
+ AAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAwMDAAMDcwADwyqYABAQEAAgICAAMDAwAERERABYW
+ FgAcHBwAIiIiACkpKQBVVVUATU1NAEJCQgA5OTkAgHz/AFBQ/wCTANYA/+zMAMbW7wDW5+cAkKmtAAAA
+ MwAAAGYAAACZAAAAzAAAMwAAADMzAAAzZgAAM5kAADPMAAAz/wAAZgAAAGYzAABmZgAAZpkAAGbMAABm
+ /wAAmQAAAJkzAACZZgAAmZkAAJnMAACZ/wAAzAAAAMwzAADMZgAAzJkAAMzMAADM/wAA/2YAAP+ZAAD/
+ zAAzAAAAMwAzADMAZgAzAJkAMwDMADMA/wAzMwAAMzMzADMzZgAzM5kAMzPMADMz/wAzZgAAM2YzADNm
+ ZgAzZpkAM2bMADNm/wAzmQAAM5kzADOZZgAzmZkAM5nMADOZ/wAzzAAAM8wzADPMZgAzzJkAM8zMADPM
+ /wAz/zMAM/9mADP/mQAz/8wAM///AGYAAABmADMAZgBmAGYAmQBmAMwAZgD/AGYzAABmMzMAZjNmAGYz
+ mQBmM8wAZjP/AGZmAABmZjMAZmZmAGZmmQBmZswAZpkAAGaZMwBmmWYAZpmZAGaZzABmmf8AZswAAGbM
+ MwBmzJkAZszMAGbM/wBm/wAAZv8zAGb/mQBm/8wAzAD/AP8AzACZmQAAmTOZAJkAmQCZAMwAmQAAAJkz
+ MwCZAGYAmTPMAJkA/wCZZgAAmWYzAJkzZgCZZpkAmWbMAJkz/wCZmTMAmZlmAJmZmQCZmcwAmZn/AJnM
+ AACZzDMAZsxmAJnMmQCZzMwAmcz/AJn/AACZ/zMAmcxmAJn/mQCZ/8wAmf//AMwAAACZADMAzABmAMwA
+ mQDMAMwAmTMAAMwzMwDMM2YAzDOZAMwzzADMM/8AzGYAAMxmMwCZZmYAzGaZAMxmzACZZv8AzJkAAMyZ
+ MwDMmWYAzJmZAMyZzADMmf8AzMwAAMzMMwDMzGYAzMyZAMzMzADMzP8AzP8AAMz/MwCZ/2YAzP+ZAMz/
+ zADM//8AzAAzAP8AZgD/AJkAzDMAAP8zMwD/M2YA/zOZAP8zzAD/M/8A/2YAAP9mMwDMZmYA/2aZAP9m
+ zADMZv8A/5kAAP+ZMwD/mWYA/5mZAP+ZzAD/mf8A/8wAAP/MMwD/zGYA/8yZAP/MzAD/zP8A//8zAMz/
+ ZgD//5kA///MAGZm/wBm/2YAZv//AP9mZgD/Zv8A//9mACEApQBfX18Ad3d3AIaGhgCWlpYAy8vLALKy
+ sgDX19cA3d3dAOPj4wDq6uoA8fHxAPj4+ADw+/8ApKCgAICAgAAAAP8AAP8AAAD//wD/AAAA/wD/AP//
+ AAD///8ACgoKCgrr6+vr6+sKCgoKCgoKCu/r7/Pz8/Pv6+8KCgoKCuvr7/Pz8/Pz8+/r6woKCu/r8/Pz
+ 8/Pz8/Pz8+vvCu/r8/Pz8/Pz8/Pz8/Pz6+/r7/Pz8/Pz8/Pz8/Pz8+/r6/PrCgrz6woK6/MKCgrz6+vz
+ CvPz8wrz8wrzCvPz8+vr8wrz8/MK8/MK8woK8/Pr6/MK8/PzCvPzCvMK8/Pz6+vv6woK8wrz8wrzCgoK
+ 7+vv6/Pz8/Pz8/Pz8/Pz8+vvCu/r8/Pz8/Pz8/Pz8+vvCgoK6+vv8/Pz8/Pz7+vrCgoKCgrv6+/z8/Pz
+ 7+vvCgoKCgoKCu/r6+vr6+vvCgoKCvgfAADgBwAAwAMAAIABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAIABAADAAwAA4AcAAPAPAAA=
+
+
CUE-Tools
diff --git a/CUETools/frmCUETools.resx b/CUETools/frmCUETools.resx
index add58f8..c1dca6a 100644
--- a/CUETools/frmCUETools.resx
+++ b/CUETools/frmCUETools.resx
@@ -121,6 +121,9 @@
True
+
+
+
@@ -128,6 +131,9 @@
54, 21
+
+ toolStripSeparator1
+
@@ -143,14 +149,14 @@
14
+
+ OGG
+
59, 17
-
- 10, 20
-
-
- 4
+
+ 8, 52
rbGapsLeftOut
@@ -164,17 +170,21 @@
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- toolStripMenuItem3
+
+ &Resume
-
- 6
+
+
+ NoControl
+
+
+ 1
btnPause
-
- ALAC
+
+ 4
@@ -188,11 +198,11 @@
10
-
-
+
+ 120, 142
-
- grpCUEPaths
+
+ 66, 23
Gaps Left Out
@@ -206,12 +216,6 @@
%1:-2\New\%-1\%F.cue
-
- True
-
-
- 59, 22
-
System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
@@ -233,14 +237,11 @@
4
-
- $this
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 5
-
-
- True
+
+ contextMenuStripUDC
77, 138
@@ -254,11 +255,11 @@
0
-
-
+
+ 398, 115
-
- 412, 92
+
+ grpAccurateRip
False
@@ -266,13 +267,9 @@
grpAccurateRip
-
- 6
+
+ 3
-
- 131, 23
-
-
CenterScreen
@@ -285,23 +282,26 @@
LossyWAV
-
- 131, 23
-
btnAbout
+
+ 6
+
rbEmbedCUE
+
+
+
System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
lblInput
-
- 6, 19
+
+ btnResume
1
@@ -330,29 +330,26 @@
txtCreateSubdirectory
-
- grpCUEPaths
-
5
+
+
+
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
6
-
-
-
-
- grpCUEPaths
+
+ 3
rbWavPack
-
- Create single file with embedded CUE sheet.
+
+ chkLossyWAV
Browse...
@@ -369,8 +366,8 @@
1
-
- System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
452, 49
@@ -381,6 +378,9 @@
True
+
+
+
System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
@@ -399,8 +399,8 @@
Verify, &then encode
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 16
rbArVerify
@@ -408,7 +408,13 @@
1
-
+
+ Create single file with embedded CUE sheet.
+
+
+ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
@@ -423,6 +429,12 @@
12
+
+ rbAPE
+
+
+
+
$this
@@ -432,11 +444,11 @@
System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- txtDataTrackLength
+
+
-
- $this
+
+ rbGapsAppended
grpAccurateRip
@@ -444,6 +456,9 @@
tAKToolStripMenuItem
+
+ 244, 211
+
System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
@@ -459,8 +474,8 @@
NoControl
-
- toolStripMenuItem2
+
+ Encode and verify
System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
@@ -480,11 +495,11 @@
NoControl
-
- 119, 22
+
+ $this
-
-
+
+ &Pause
&None
@@ -510,9 +525,6 @@
-
- chkLossyWAV
-
Verify AR + CRCs
@@ -528,17 +540,11 @@
8, 24
-
- 398, 115
-
412, 277
-
- Lossy:
-
-
- 11
+
+ 6
System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
@@ -546,6 +552,9 @@
True
+
+
+
1
@@ -555,9 +564,6 @@
385, 21
-
- rbCreateSubdirectory
-
User
@@ -567,8 +573,8 @@
119, 22
-
-
+
+ 0
66, 23
@@ -582,17 +588,11 @@
System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- toolStripMenuItem1
-
71, 23
-
- CUE Paths
-
-
- 110, 17
+
+ 10, 88
66, 117
@@ -612,27 +612,21 @@
$this
-
- 16
-
grpAudioOutput
3
-
- $this
+
+ grpCUEPaths
-
- 7
+
+ True
10, 51
-
- grpCUEPaths
-
&WAV
@@ -642,6 +636,15 @@
412, 184
+
+ btnStop
+
+
+
+
+
+ 11
+
7
@@ -651,8 +654,8 @@
True
-
- 16
+
+ 131, 23
True
@@ -660,26 +663,23 @@
0
-
-
+
+ False
-
- 4
+
+ 452, 20
8
-
- 3
-
btnSettings
System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- True
+
+ $this
NoControl
@@ -687,11 +687,8 @@
4
-
- grpOutputPathGeneration
-
-
-
+
+ 16
System.Windows.Forms.MaskedTextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
@@ -705,6 +702,9 @@
System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ toolStripMenuItem3
+
True
@@ -738,17 +738,17 @@
2
-
- 0
+
+ &Manual
-
- 2
+
+ 8, 4
-
- $this
+
+
-
- 0
+
+ grpOutputStyle
System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
@@ -762,21 +762,18 @@
Create multiple files with gaps left out
-
- 10, 88
-
5
-
- 101, 17
+
+ System.Windows.Forms.StatusStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 2
Tahoma, 8.25pt
-
- 59, 48
-
&Output:
@@ -789,6 +786,9 @@
$this
+
+
+
System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
@@ -798,12 +798,18 @@
grpOutputPathGeneration
+
+ 10, 66
+
System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
92, 164
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
2
@@ -828,15 +834,15 @@
APE
+
+ toolTip1
+
Filename Corrector...
104, 17
-
- rbCustomFormat
-
grpOutputPathGeneration
@@ -852,8 +858,8 @@
btnConvert
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ On the first pass, verify and try to find an offset correction which makes the rip accurate according to the AccurateRip database. On the second pass, convert, possibly applying offset correction.
@@ -864,17 +870,17 @@
-
- 3
-
-
- &Pause
+
+ 69, 17
True
-
- grpAudioOutput
+
+ Lossy:
+
+
+ True
grpOutputPathGeneration
@@ -885,14 +891,17 @@
grpAudioOutput
-
- &Resume
+
+ 1
13
-
- 119, 22
+
+ $this
+
+
+
About
@@ -903,14 +912,14 @@
grpOutputStyle
-
- AccurateRip
+
+ &Go
txtInputPath
-
- &Embedded
+
+ 162, 164
44, 17
@@ -927,9 +936,6 @@
Always
-
- grpAudioOutput
-
0, 378
@@ -939,20 +945,14 @@
2
-
- 6
-
-
- Create multiple files with gaps prepended
+
+ False
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- $this
-
-
- System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 2
btnCodec
@@ -966,11 +966,14 @@
btnCUECreator
+
+ grpAccurateRip
+
44, 17
-
- rbGapsAppended
+
+
8, 211
@@ -1002,8 +1005,11 @@
System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 8, 52
+
+ MiddleLeft
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
2
@@ -1014,6 +1020,9 @@
Browse...
+
+
+
4
@@ -1032,18 +1041,12 @@
166, 18
-
- Never
-
0
412, 339
-
- Output Path
-
125, 17
@@ -1056,6 +1059,9 @@
If needed
+
+ 119, 22
+
412, 308
@@ -1068,26 +1074,26 @@
66, 23
+
+ 1
+
grpOutputPathGeneration
-
- 8, 4
+
+ AccurateRip
-
- statusStrip1
-
-
-
+
+ 412, 92
-
- 9
+
+
-
- grpOutputStyle
+
+ System.Windows.Forms.ToolStripProgressBar, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
120, 17
@@ -1095,29 +1101,23 @@
System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- Encode and verify
-
rbWAV
-
-
+
+ Create single file + CUE sheet
-
- False
+
+ 10, 20
92, 17
-
- toolTip1
-
-
- Create single file + CUE sheet
+
+ 6
1
@@ -1134,26 +1134,23 @@
TTA
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
True
+
+ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
grpAccurateRip
-
- 120, 142
+
+ True
&FLAC
-
- 0
-
-
- 3
+
+ Output Path
@@ -1161,20 +1158,20 @@
True
-
- 4
+
+
-
- True
+
+ 1
106, 17
-
- grpAccurateRip
+
+ 72, 17
-
- 452, 20
+
+ 59, 22
System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
@@ -1182,17 +1179,26 @@
-
- btnStop
+
+ $this
-
- &Don't verify, encode
+
+ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 0
+
+
+ grpAudioOutput
+
+
+ rbFreedbIf
True
-
-
+
+ Create multiple files with gaps appended
@@ -1228,11 +1234,17 @@
New
+
+ oGGToolStripMenuItem
+
System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 2
+
+ 119, 22
+
+
+ 7
5
@@ -1243,8 +1255,14 @@
140, 16
-
- NoControl
+
+
+
+
+ 4
+
+
+ $this
mP3ToolStripMenuItem
@@ -1267,11 +1285,14 @@
txtAppendFilename
-
- oGGToolStripMenuItem
+
+ True
-
- contextMenuStripUDC
+
+ 477, 339
+
+
+ Contact the AccurateRip databse for validation and compare the image against database
11, 87
@@ -1279,9 +1300,6 @@
System.Windows.Forms.ToolStripProgressBar, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 11, 70
-
140, 16
@@ -1306,20 +1324,26 @@
grpOutputStyle
+
+ True
+
6, 13
-
- grpAccurateRip
+
+ 0
10, 68
-
- &Manual
+
+ 119, 22
-
- 477, 339
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grpCUEPaths
7, 141
@@ -1327,24 +1351,21 @@
True
-
- $this
-
0
+
+ -New
+
+
+
+
122, 17
-
- 1
-
6, 141
-
- 8
-
11, 19
@@ -1357,8 +1378,8 @@
10, 43
-
- grpAccurateRip
+
+ 8
frmCUETools
@@ -1372,8 +1393,8 @@
Data track:
-
- 119, 22
+
+ 5
76, 17
@@ -1381,17 +1402,14 @@
8
-
- 226, 21
-
Don't create any audio files, only CUE sheet
-
- OGG
+
+ grpAudioOutput
1
@@ -1402,20 +1420,17 @@
2
-
- 0
-
14
grpAccurateRip
-
- rbFreedbIf
+
+ 226, 21
-
-
+
+ rbCustomFormat
61, 13
@@ -1423,20 +1438,23 @@
7
-
- -New
+
+ grpAccurateRip
Audio Output
+
+ rbFreedbNever
+
128, 164
rbAppendFilename
-
- $this
+
+ Create multiple files with gaps prepended
2
@@ -1447,8 +1465,8 @@
System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ ALAC
37, 13
@@ -1462,17 +1480,14 @@
Append to filename:
-
- 1
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
119, 22
-
- On the first pass, verify and try to find an offset correction which makes the rip accurate according to the AccurateRip database. On the second pass, convert, possibly applying offset correction.
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 47, 17
@@ -1501,8 +1516,8 @@
CUE Style
-
-
+
+ 131, 23
rbArApplyOffset
@@ -1525,20 +1540,20 @@
rbArNone
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 101, 17
10, 37
-
+
0
-
- btnResume
+
+ 3
-
- 11
+
+ 0
System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
@@ -1546,38 +1561,32 @@
0
-
- 66, 23
+
+ grpOutputPathGeneration
-
-
+
+ 9
11, 53
-
- System.Windows.Forms.StatusStrip, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ grpCUEPaths
-
-
-
-
- &Go
+
+ 3
grpAudioOutput
- CUE Tools
+ CUETools 1.9.5
-
- 244, 211
+
+ grpCUEPaths
-
-
-
-
- Contact the AccurateRip databse for validation and compare the image against database
+
+ $this
$this
@@ -1588,23 +1597,26 @@
System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
5
-
- True
+
+ CUE Paths
385, 21
-
- 1
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ statusStrip1
+
+
+ &Embedded
8
@@ -1615,14 +1627,14 @@
10, 17
-
- 69, 17
+
+ 4
toolStripProgressBar1
-
- toolStripSeparator1
+
+ toolStripMenuItem1
@@ -1630,8 +1642,8 @@
>
-
-
+
+ Never
131, 23
@@ -1639,23 +1651,20 @@
2
-
- False
+
+ 11, 70
True
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
75, 17
-
- 10, 66
+
+ 0
5
@@ -1666,8 +1675,8 @@
5
-
- MiddleLeft
+
+ $this
@@ -1681,21 +1690,12 @@
Don't contact the AccurateRip database for validation
-
- 1
-
Gaps Prepended
-
- 0
-
&Input:
-
- 47, 17
-
2
@@ -1708,14 +1708,11 @@
statusStrip1
-
- 412, 246
-
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 4
+
+ 11
grpCUEPaths
@@ -1732,11 +1729,11 @@
11, 36
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ &Don't verify, encode
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 412, 246
71, 23
@@ -1756,14 +1753,17 @@
4
-
- rbAPE
+
+ toolStripMenuItem2
+
+
+ True
btnBatch
-
- System.Windows.Forms.ToolStripProgressBar, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ grpCUEPaths
rbFLAC
@@ -1780,8 +1780,8 @@
-
- 162, 164
+
+ 110, 17
groupBox1
@@ -1789,8 +1789,8 @@
$this
-
- rbFreedbNever
+
+ 6, 19
System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
@@ -1810,8 +1810,8 @@
15
-
- Create multiple files with gaps appended
+
+ rbCreateSubdirectory
477, 339
@@ -1822,20 +1822,20 @@
108, 211
-
- True
+
+ 4
System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 72, 17
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
59, 17
-
- grpCUEPaths
+
+ txtDataTrackLength
10, 85
@@ -1849,14 +1849,14 @@
-
- 3
+
+ 59, 48
System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 0, 378
+
+ True
153, 8
@@ -1864,7 +1864,7 @@
250, 8
-
- True
+
+ 0, 378
\ No newline at end of file
diff --git a/CUETools/frmChoice.resx b/CUETools/frmChoice.resx
index 95cca0d..79d881e 100644
--- a/CUETools/frmChoice.resx
+++ b/CUETools/frmChoice.resx
@@ -259,30 +259,6 @@
Top, Left, Right
-
- 1
-
-
- Title
-
-
- 455
-
-
- 0
-
-
- #
-
-
- 30
-
-
- Length
-
-
- 62
-
12, 90
@@ -307,6 +283,30 @@
1
+
+ 1
+
+
+ Title
+
+
+ 455
+
+
+ 0
+
+
+ #
+
+
+ 30
+
+
+ Length
+
+
+ 62
+
407, 293
diff --git a/CUETools/frmSettings.Designer.cs b/CUETools/frmSettings.Designer.cs
index aa9d3a3..5e591a6 100644
--- a/CUETools/frmSettings.Designer.cs
+++ b/CUETools/frmSettings.Designer.cs
@@ -99,6 +99,7 @@ namespace JDP {
this.label1 = new System.Windows.Forms.Label();
this.numericLossyWAVQuality = new System.Windows.Forms.NumericUpDown();
this.tabPage9 = new System.Windows.Forms.TabPage();
+ this.chkUDC1ID3v2 = new System.Windows.Forms.CheckBox();
this.chkUDC1APEv2 = new System.Windows.Forms.CheckBox();
this.label6 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
@@ -113,7 +114,6 @@ namespace JDP {
this.tabPage4 = new System.Windows.Forms.TabPage();
this.grpHDCD = new System.Windows.Forms.GroupBox();
this.chkHDCDDetect = new System.Windows.Forms.CheckBox();
- this.chkUDC1ID3v2 = new System.Windows.Forms.CheckBox();
btnCancel = new System.Windows.Forms.Button();
this.grpGeneral.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.numericWriteOffset)).BeginInit();
@@ -143,13 +143,22 @@ namespace JDP {
//
// btnCancel
//
- btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
+ btnCancel.AccessibleDescription = null;
+ btnCancel.AccessibleName = null;
resources.ApplyResources(btnCancel, "btnCancel");
+ btnCancel.BackgroundImage = null;
+ btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
+ btnCancel.Font = null;
btnCancel.Name = "btnCancel";
+ this.toolTip1.SetToolTip(btnCancel, resources.GetString("btnCancel.ToolTip"));
btnCancel.UseVisualStyleBackColor = true;
//
// grpGeneral
//
+ this.grpGeneral.AccessibleDescription = null;
+ this.grpGeneral.AccessibleName = null;
+ resources.ApplyResources(this.grpGeneral, "grpGeneral");
+ this.grpGeneral.BackgroundImage = null;
this.grpGeneral.Controls.Add(this.chkOverwriteTags);
this.grpGeneral.Controls.Add(this.chkExtractLog);
this.grpGeneral.Controls.Add(this.chkReducePriority);
@@ -162,64 +171,106 @@ namespace JDP {
this.grpGeneral.Controls.Add(this.chkAutoCorrectFilenames);
this.grpGeneral.Controls.Add(this.chkPreserveHTOA);
this.grpGeneral.Controls.Add(this.lblWriteOffset);
- resources.ApplyResources(this.grpGeneral, "grpGeneral");
+ this.grpGeneral.Font = null;
this.grpGeneral.Name = "grpGeneral";
this.grpGeneral.TabStop = false;
+ this.toolTip1.SetToolTip(this.grpGeneral, resources.GetString("grpGeneral.ToolTip"));
//
// chkOverwriteTags
//
+ this.chkOverwriteTags.AccessibleDescription = null;
+ this.chkOverwriteTags.AccessibleName = null;
resources.ApplyResources(this.chkOverwriteTags, "chkOverwriteTags");
+ this.chkOverwriteTags.BackgroundImage = null;
+ this.chkOverwriteTags.Font = null;
this.chkOverwriteTags.Name = "chkOverwriteTags";
+ this.toolTip1.SetToolTip(this.chkOverwriteTags, resources.GetString("chkOverwriteTags.ToolTip"));
this.chkOverwriteTags.UseVisualStyleBackColor = true;
//
// chkExtractLog
//
+ this.chkExtractLog.AccessibleDescription = null;
+ this.chkExtractLog.AccessibleName = null;
resources.ApplyResources(this.chkExtractLog, "chkExtractLog");
+ this.chkExtractLog.BackgroundImage = null;
+ this.chkExtractLog.Font = null;
this.chkExtractLog.Name = "chkExtractLog";
+ this.toolTip1.SetToolTip(this.chkExtractLog, resources.GetString("chkExtractLog.ToolTip"));
this.chkExtractLog.UseVisualStyleBackColor = true;
//
// chkReducePriority
//
+ this.chkReducePriority.AccessibleDescription = null;
+ this.chkReducePriority.AccessibleName = null;
resources.ApplyResources(this.chkReducePriority, "chkReducePriority");
+ this.chkReducePriority.BackgroundImage = null;
+ this.chkReducePriority.Font = null;
this.chkReducePriority.Name = "chkReducePriority";
+ this.toolTip1.SetToolTip(this.chkReducePriority, resources.GetString("chkReducePriority.ToolTip"));
this.chkReducePriority.UseVisualStyleBackColor = true;
//
// chkTruncateExtra4206Samples
//
+ this.chkTruncateExtra4206Samples.AccessibleDescription = null;
+ this.chkTruncateExtra4206Samples.AccessibleName = null;
resources.ApplyResources(this.chkTruncateExtra4206Samples, "chkTruncateExtra4206Samples");
+ this.chkTruncateExtra4206Samples.BackgroundImage = null;
+ this.chkTruncateExtra4206Samples.Font = null;
this.chkTruncateExtra4206Samples.Name = "chkTruncateExtra4206Samples";
this.toolTip1.SetToolTip(this.chkTruncateExtra4206Samples, resources.GetString("chkTruncateExtra4206Samples.ToolTip"));
this.chkTruncateExtra4206Samples.UseVisualStyleBackColor = true;
//
// chkCreateCUEFileWhenEmbedded
//
+ this.chkCreateCUEFileWhenEmbedded.AccessibleDescription = null;
+ this.chkCreateCUEFileWhenEmbedded.AccessibleName = null;
resources.ApplyResources(this.chkCreateCUEFileWhenEmbedded, "chkCreateCUEFileWhenEmbedded");
+ this.chkCreateCUEFileWhenEmbedded.BackgroundImage = null;
+ this.chkCreateCUEFileWhenEmbedded.Font = null;
this.chkCreateCUEFileWhenEmbedded.Name = "chkCreateCUEFileWhenEmbedded";
+ this.toolTip1.SetToolTip(this.chkCreateCUEFileWhenEmbedded, resources.GetString("chkCreateCUEFileWhenEmbedded.ToolTip"));
this.chkCreateCUEFileWhenEmbedded.UseVisualStyleBackColor = true;
//
// chkCreateM3U
//
+ this.chkCreateM3U.AccessibleDescription = null;
+ this.chkCreateM3U.AccessibleName = null;
resources.ApplyResources(this.chkCreateM3U, "chkCreateM3U");
+ this.chkCreateM3U.BackgroundImage = null;
+ this.chkCreateM3U.Font = null;
this.chkCreateM3U.Name = "chkCreateM3U";
+ this.toolTip1.SetToolTip(this.chkCreateM3U, resources.GetString("chkCreateM3U.ToolTip"));
this.chkCreateM3U.UseVisualStyleBackColor = true;
//
// chkFillUpCUE
//
+ this.chkFillUpCUE.AccessibleDescription = null;
+ this.chkFillUpCUE.AccessibleName = null;
resources.ApplyResources(this.chkFillUpCUE, "chkFillUpCUE");
+ this.chkFillUpCUE.BackgroundImage = null;
+ this.chkFillUpCUE.Font = null;
this.chkFillUpCUE.Name = "chkFillUpCUE";
+ this.toolTip1.SetToolTip(this.chkFillUpCUE, resources.GetString("chkFillUpCUE.ToolTip"));
this.chkFillUpCUE.UseVisualStyleBackColor = true;
this.chkFillUpCUE.CheckedChanged += new System.EventHandler(this.chkFillUpCUE_CheckedChanged);
//
// chkEmbedLog
//
+ this.chkEmbedLog.AccessibleDescription = null;
+ this.chkEmbedLog.AccessibleName = null;
resources.ApplyResources(this.chkEmbedLog, "chkEmbedLog");
+ this.chkEmbedLog.BackgroundImage = null;
+ this.chkEmbedLog.Font = null;
this.chkEmbedLog.Name = "chkEmbedLog";
this.toolTip1.SetToolTip(this.chkEmbedLog, resources.GetString("chkEmbedLog.ToolTip"));
this.chkEmbedLog.UseVisualStyleBackColor = true;
//
// numericWriteOffset
//
+ this.numericWriteOffset.AccessibleDescription = null;
+ this.numericWriteOffset.AccessibleName = null;
resources.ApplyResources(this.numericWriteOffset, "numericWriteOffset");
+ this.numericWriteOffset.Font = null;
this.numericWriteOffset.Maximum = new decimal(new int[] {
99999,
0,
@@ -231,34 +282,52 @@ namespace JDP {
0,
-2147483648});
this.numericWriteOffset.Name = "numericWriteOffset";
+ this.toolTip1.SetToolTip(this.numericWriteOffset, resources.GetString("numericWriteOffset.ToolTip"));
//
// chkAutoCorrectFilenames
//
+ this.chkAutoCorrectFilenames.AccessibleDescription = null;
+ this.chkAutoCorrectFilenames.AccessibleName = null;
resources.ApplyResources(this.chkAutoCorrectFilenames, "chkAutoCorrectFilenames");
+ this.chkAutoCorrectFilenames.BackgroundImage = null;
+ this.chkAutoCorrectFilenames.Font = null;
this.chkAutoCorrectFilenames.Name = "chkAutoCorrectFilenames";
this.toolTip1.SetToolTip(this.chkAutoCorrectFilenames, resources.GetString("chkAutoCorrectFilenames.ToolTip"));
this.chkAutoCorrectFilenames.UseVisualStyleBackColor = true;
//
// chkPreserveHTOA
//
+ this.chkPreserveHTOA.AccessibleDescription = null;
+ this.chkPreserveHTOA.AccessibleName = null;
resources.ApplyResources(this.chkPreserveHTOA, "chkPreserveHTOA");
+ this.chkPreserveHTOA.BackgroundImage = null;
+ this.chkPreserveHTOA.Font = null;
this.chkPreserveHTOA.Name = "chkPreserveHTOA";
+ this.toolTip1.SetToolTip(this.chkPreserveHTOA, resources.GetString("chkPreserveHTOA.ToolTip"));
this.chkPreserveHTOA.UseVisualStyleBackColor = true;
//
// lblWriteOffset
//
+ this.lblWriteOffset.AccessibleDescription = null;
+ this.lblWriteOffset.AccessibleName = null;
resources.ApplyResources(this.lblWriteOffset, "lblWriteOffset");
+ this.lblWriteOffset.Font = null;
this.lblWriteOffset.Name = "lblWriteOffset";
+ this.toolTip1.SetToolTip(this.lblWriteOffset, resources.GetString("lblWriteOffset.ToolTip"));
//
// numericFLACCompressionLevel
//
+ this.numericFLACCompressionLevel.AccessibleDescription = null;
+ this.numericFLACCompressionLevel.AccessibleName = null;
resources.ApplyResources(this.numericFLACCompressionLevel, "numericFLACCompressionLevel");
+ this.numericFLACCompressionLevel.Font = null;
this.numericFLACCompressionLevel.Maximum = new decimal(new int[] {
8,
0,
0,
0});
this.numericFLACCompressionLevel.Name = "numericFLACCompressionLevel";
+ this.toolTip1.SetToolTip(this.numericFLACCompressionLevel, resources.GetString("numericFLACCompressionLevel.ToolTip"));
this.numericFLACCompressionLevel.Value = new decimal(new int[] {
5,
0,
@@ -267,32 +336,54 @@ namespace JDP {
//
// lblFLACCompressionLevel
//
+ this.lblFLACCompressionLevel.AccessibleDescription = null;
+ this.lblFLACCompressionLevel.AccessibleName = null;
resources.ApplyResources(this.lblFLACCompressionLevel, "lblFLACCompressionLevel");
+ this.lblFLACCompressionLevel.Font = null;
this.lblFLACCompressionLevel.Name = "lblFLACCompressionLevel";
+ this.toolTip1.SetToolTip(this.lblFLACCompressionLevel, resources.GetString("lblFLACCompressionLevel.ToolTip"));
//
// chkFLACVerify
//
+ this.chkFLACVerify.AccessibleDescription = null;
+ this.chkFLACVerify.AccessibleName = null;
resources.ApplyResources(this.chkFLACVerify, "chkFLACVerify");
+ this.chkFLACVerify.BackgroundImage = null;
+ this.chkFLACVerify.Font = null;
this.chkFLACVerify.Name = "chkFLACVerify";
+ this.toolTip1.SetToolTip(this.chkFLACVerify, resources.GetString("chkFLACVerify.ToolTip"));
this.chkFLACVerify.UseVisualStyleBackColor = true;
//
// btnOK
//
- this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
+ this.btnOK.AccessibleDescription = null;
+ this.btnOK.AccessibleName = null;
resources.ApplyResources(this.btnOK, "btnOK");
+ this.btnOK.BackgroundImage = null;
+ this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
+ this.btnOK.Font = null;
this.btnOK.Name = "btnOK";
+ this.toolTip1.SetToolTip(this.btnOK, resources.GetString("btnOK.ToolTip"));
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// chkWVStoreMD5
//
+ this.chkWVStoreMD5.AccessibleDescription = null;
+ this.chkWVStoreMD5.AccessibleName = null;
resources.ApplyResources(this.chkWVStoreMD5, "chkWVStoreMD5");
+ this.chkWVStoreMD5.BackgroundImage = null;
+ this.chkWVStoreMD5.Font = null;
this.chkWVStoreMD5.Name = "chkWVStoreMD5";
+ this.toolTip1.SetToolTip(this.chkWVStoreMD5, resources.GetString("chkWVStoreMD5.ToolTip"));
this.chkWVStoreMD5.UseVisualStyleBackColor = true;
//
// numWVExtraMode
//
+ this.numWVExtraMode.AccessibleDescription = null;
+ this.numWVExtraMode.AccessibleName = null;
resources.ApplyResources(this.numWVExtraMode, "numWVExtraMode");
+ this.numWVExtraMode.Font = null;
this.numWVExtraMode.Maximum = new decimal(new int[] {
6,
0,
@@ -304,6 +395,7 @@ namespace JDP {
0,
0});
this.numWVExtraMode.Name = "numWVExtraMode";
+ this.toolTip1.SetToolTip(this.numWVExtraMode, resources.GetString("numWVExtraMode.ToolTip"));
this.numWVExtraMode.Value = new decimal(new int[] {
1,
0,
@@ -312,39 +404,68 @@ namespace JDP {
//
// chkWVExtraMode
//
+ this.chkWVExtraMode.AccessibleDescription = null;
+ this.chkWVExtraMode.AccessibleName = null;
resources.ApplyResources(this.chkWVExtraMode, "chkWVExtraMode");
+ this.chkWVExtraMode.BackgroundImage = null;
+ this.chkWVExtraMode.Font = null;
this.chkWVExtraMode.Name = "chkWVExtraMode";
+ this.toolTip1.SetToolTip(this.chkWVExtraMode, resources.GetString("chkWVExtraMode.ToolTip"));
this.chkWVExtraMode.UseVisualStyleBackColor = true;
this.chkWVExtraMode.CheckedChanged += new System.EventHandler(this.chkWVExtraMode_CheckedChanged);
//
// rbWVVeryHigh
//
+ this.rbWVVeryHigh.AccessibleDescription = null;
+ this.rbWVVeryHigh.AccessibleName = null;
resources.ApplyResources(this.rbWVVeryHigh, "rbWVVeryHigh");
+ this.rbWVVeryHigh.BackgroundImage = null;
+ this.rbWVVeryHigh.Font = null;
this.rbWVVeryHigh.Name = "rbWVVeryHigh";
+ this.toolTip1.SetToolTip(this.rbWVVeryHigh, resources.GetString("rbWVVeryHigh.ToolTip"));
this.rbWVVeryHigh.UseVisualStyleBackColor = true;
//
// rbWVHigh
//
+ this.rbWVHigh.AccessibleDescription = null;
+ this.rbWVHigh.AccessibleName = null;
resources.ApplyResources(this.rbWVHigh, "rbWVHigh");
+ this.rbWVHigh.BackgroundImage = null;
+ this.rbWVHigh.Font = null;
this.rbWVHigh.Name = "rbWVHigh";
+ this.toolTip1.SetToolTip(this.rbWVHigh, resources.GetString("rbWVHigh.ToolTip"));
this.rbWVHigh.UseVisualStyleBackColor = true;
//
// rbWVNormal
//
+ this.rbWVNormal.AccessibleDescription = null;
+ this.rbWVNormal.AccessibleName = null;
resources.ApplyResources(this.rbWVNormal, "rbWVNormal");
+ this.rbWVNormal.BackgroundImage = null;
this.rbWVNormal.Checked = true;
+ this.rbWVNormal.Font = null;
this.rbWVNormal.Name = "rbWVNormal";
this.rbWVNormal.TabStop = true;
+ this.toolTip1.SetToolTip(this.rbWVNormal, resources.GetString("rbWVNormal.ToolTip"));
this.rbWVNormal.UseVisualStyleBackColor = true;
//
// rbWVFast
//
+ this.rbWVFast.AccessibleDescription = null;
+ this.rbWVFast.AccessibleName = null;
resources.ApplyResources(this.rbWVFast, "rbWVFast");
+ this.rbWVFast.BackgroundImage = null;
+ this.rbWVFast.Font = null;
this.rbWVFast.Name = "rbWVFast";
+ this.toolTip1.SetToolTip(this.rbWVFast, resources.GetString("rbWVFast.ToolTip"));
this.rbWVFast.UseVisualStyleBackColor = true;
//
// groupBox1
//
+ this.groupBox1.AccessibleDescription = null;
+ this.groupBox1.AccessibleName = null;
+ resources.ApplyResources(this.groupBox1, "groupBox1");
+ this.groupBox1.BackgroundImage = null;
this.groupBox1.Controls.Add(this.chkEncodeWhenZeroOffset);
this.groupBox1.Controls.Add(this.chkArFixOffset);
this.groupBox1.Controls.Add(this.chkWriteArLogOnConvert);
@@ -358,61 +479,89 @@ namespace JDP {
this.groupBox1.Controls.Add(this.numFixWhenConfidence);
this.groupBox1.Controls.Add(this.labelFixWhenPercent);
this.groupBox1.Controls.Add(this.numFixWhenPercent);
- resources.ApplyResources(this.groupBox1, "groupBox1");
+ this.groupBox1.Font = null;
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
+ this.toolTip1.SetToolTip(this.groupBox1, resources.GetString("groupBox1.ToolTip"));
//
// chkEncodeWhenZeroOffset
//
+ this.chkEncodeWhenZeroOffset.AccessibleDescription = null;
+ this.chkEncodeWhenZeroOffset.AccessibleName = null;
resources.ApplyResources(this.chkEncodeWhenZeroOffset, "chkEncodeWhenZeroOffset");
+ this.chkEncodeWhenZeroOffset.BackgroundImage = null;
+ this.chkEncodeWhenZeroOffset.Font = null;
this.chkEncodeWhenZeroOffset.Name = "chkEncodeWhenZeroOffset";
+ this.toolTip1.SetToolTip(this.chkEncodeWhenZeroOffset, resources.GetString("chkEncodeWhenZeroOffset.ToolTip"));
this.chkEncodeWhenZeroOffset.UseVisualStyleBackColor = true;
//
// chkArFixOffset
//
+ this.chkArFixOffset.AccessibleDescription = null;
+ this.chkArFixOffset.AccessibleName = null;
resources.ApplyResources(this.chkArFixOffset, "chkArFixOffset");
+ this.chkArFixOffset.BackgroundImage = null;
this.chkArFixOffset.Checked = true;
this.chkArFixOffset.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.chkArFixOffset.Font = null;
this.chkArFixOffset.Name = "chkArFixOffset";
+ this.toolTip1.SetToolTip(this.chkArFixOffset, resources.GetString("chkArFixOffset.ToolTip"));
this.chkArFixOffset.UseVisualStyleBackColor = true;
this.chkArFixOffset.CheckedChanged += new System.EventHandler(this.chkArFixOffset_CheckedChanged);
//
// chkWriteArLogOnConvert
//
+ this.chkWriteArLogOnConvert.AccessibleDescription = null;
+ this.chkWriteArLogOnConvert.AccessibleName = null;
resources.ApplyResources(this.chkWriteArLogOnConvert, "chkWriteArLogOnConvert");
+ this.chkWriteArLogOnConvert.BackgroundImage = null;
this.chkWriteArLogOnConvert.Checked = true;
this.chkWriteArLogOnConvert.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.chkWriteArLogOnConvert.Font = null;
this.chkWriteArLogOnConvert.Name = "chkWriteArLogOnConvert";
+ this.toolTip1.SetToolTip(this.chkWriteArLogOnConvert, resources.GetString("chkWriteArLogOnConvert.ToolTip"));
this.chkWriteArLogOnConvert.UseVisualStyleBackColor = true;
//
// chkWriteArTagsOnConvert
//
+ this.chkWriteArTagsOnConvert.AccessibleDescription = null;
+ this.chkWriteArTagsOnConvert.AccessibleName = null;
resources.ApplyResources(this.chkWriteArTagsOnConvert, "chkWriteArTagsOnConvert");
+ this.chkWriteArTagsOnConvert.BackgroundImage = null;
this.chkWriteArTagsOnConvert.Checked = true;
this.chkWriteArTagsOnConvert.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.chkWriteArTagsOnConvert.Font = null;
this.chkWriteArTagsOnConvert.Name = "chkWriteArTagsOnConvert";
this.toolTip1.SetToolTip(this.chkWriteArTagsOnConvert, resources.GetString("chkWriteArTagsOnConvert.ToolTip"));
this.chkWriteArTagsOnConvert.UseVisualStyleBackColor = true;
//
// labelEncodeWhenPercent
//
+ this.labelEncodeWhenPercent.AccessibleDescription = null;
+ this.labelEncodeWhenPercent.AccessibleName = null;
resources.ApplyResources(this.labelEncodeWhenPercent, "labelEncodeWhenPercent");
+ this.labelEncodeWhenPercent.Font = null;
this.labelEncodeWhenPercent.Name = "labelEncodeWhenPercent";
+ this.toolTip1.SetToolTip(this.labelEncodeWhenPercent, resources.GetString("labelEncodeWhenPercent.ToolTip"));
//
// numEncodeWhenPercent
//
+ this.numEncodeWhenPercent.AccessibleDescription = null;
+ this.numEncodeWhenPercent.AccessibleName = null;
+ resources.ApplyResources(this.numEncodeWhenPercent, "numEncodeWhenPercent");
+ this.numEncodeWhenPercent.Font = null;
this.numEncodeWhenPercent.Increment = new decimal(new int[] {
5,
0,
0,
0});
- resources.ApplyResources(this.numEncodeWhenPercent, "numEncodeWhenPercent");
this.numEncodeWhenPercent.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.numEncodeWhenPercent.Name = "numEncodeWhenPercent";
+ this.toolTip1.SetToolTip(this.numEncodeWhenPercent, resources.GetString("numEncodeWhenPercent.ToolTip"));
this.numEncodeWhenPercent.Value = new decimal(new int[] {
100,
0,
@@ -421,18 +570,26 @@ namespace JDP {
//
// labelEncodeWhenConfidence
//
+ this.labelEncodeWhenConfidence.AccessibleDescription = null;
+ this.labelEncodeWhenConfidence.AccessibleName = null;
resources.ApplyResources(this.labelEncodeWhenConfidence, "labelEncodeWhenConfidence");
+ this.labelEncodeWhenConfidence.Font = null;
this.labelEncodeWhenConfidence.Name = "labelEncodeWhenConfidence";
+ this.toolTip1.SetToolTip(this.labelEncodeWhenConfidence, resources.GetString("labelEncodeWhenConfidence.ToolTip"));
//
// numEncodeWhenConfidence
//
+ this.numEncodeWhenConfidence.AccessibleDescription = null;
+ this.numEncodeWhenConfidence.AccessibleName = null;
resources.ApplyResources(this.numEncodeWhenConfidence, "numEncodeWhenConfidence");
+ this.numEncodeWhenConfidence.Font = null;
this.numEncodeWhenConfidence.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.numEncodeWhenConfidence.Name = "numEncodeWhenConfidence";
+ this.toolTip1.SetToolTip(this.numEncodeWhenConfidence, resources.GetString("numEncodeWhenConfidence.ToolTip"));
this.numEncodeWhenConfidence.Value = new decimal(new int[] {
1,
0,
@@ -441,27 +598,40 @@ namespace JDP {
//
// chkArNoUnverifiedAudio
//
+ this.chkArNoUnverifiedAudio.AccessibleDescription = null;
+ this.chkArNoUnverifiedAudio.AccessibleName = null;
resources.ApplyResources(this.chkArNoUnverifiedAudio, "chkArNoUnverifiedAudio");
+ this.chkArNoUnverifiedAudio.BackgroundImage = null;
this.chkArNoUnverifiedAudio.Checked = true;
this.chkArNoUnverifiedAudio.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.chkArNoUnverifiedAudio.Font = null;
this.chkArNoUnverifiedAudio.Name = "chkArNoUnverifiedAudio";
+ this.toolTip1.SetToolTip(this.chkArNoUnverifiedAudio, resources.GetString("chkArNoUnverifiedAudio.ToolTip"));
this.chkArNoUnverifiedAudio.UseVisualStyleBackColor = true;
this.chkArNoUnverifiedAudio.CheckedChanged += new System.EventHandler(this.chkArNoUnverifiedAudio_CheckedChanged);
//
// labelFixWhenConfidence
//
+ this.labelFixWhenConfidence.AccessibleDescription = null;
+ this.labelFixWhenConfidence.AccessibleName = null;
resources.ApplyResources(this.labelFixWhenConfidence, "labelFixWhenConfidence");
+ this.labelFixWhenConfidence.Font = null;
this.labelFixWhenConfidence.Name = "labelFixWhenConfidence";
+ this.toolTip1.SetToolTip(this.labelFixWhenConfidence, resources.GetString("labelFixWhenConfidence.ToolTip"));
//
// numFixWhenConfidence
//
+ this.numFixWhenConfidence.AccessibleDescription = null;
+ this.numFixWhenConfidence.AccessibleName = null;
resources.ApplyResources(this.numFixWhenConfidence, "numFixWhenConfidence");
+ this.numFixWhenConfidence.Font = null;
this.numFixWhenConfidence.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.numFixWhenConfidence.Name = "numFixWhenConfidence";
+ this.toolTip1.SetToolTip(this.numFixWhenConfidence, resources.GetString("numFixWhenConfidence.ToolTip"));
this.numFixWhenConfidence.Value = new decimal(new int[] {
1,
0,
@@ -470,23 +640,31 @@ namespace JDP {
//
// labelFixWhenPercent
//
+ this.labelFixWhenPercent.AccessibleDescription = null;
+ this.labelFixWhenPercent.AccessibleName = null;
resources.ApplyResources(this.labelFixWhenPercent, "labelFixWhenPercent");
+ this.labelFixWhenPercent.Font = null;
this.labelFixWhenPercent.Name = "labelFixWhenPercent";
+ this.toolTip1.SetToolTip(this.labelFixWhenPercent, resources.GetString("labelFixWhenPercent.ToolTip"));
//
// numFixWhenPercent
//
+ this.numFixWhenPercent.AccessibleDescription = null;
+ this.numFixWhenPercent.AccessibleName = null;
+ resources.ApplyResources(this.numFixWhenPercent, "numFixWhenPercent");
+ this.numFixWhenPercent.Font = null;
this.numFixWhenPercent.Increment = new decimal(new int[] {
5,
0,
0,
0});
- resources.ApplyResources(this.numFixWhenPercent, "numFixWhenPercent");
this.numFixWhenPercent.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.numFixWhenPercent.Name = "numFixWhenPercent";
+ this.toolTip1.SetToolTip(this.numFixWhenPercent, resources.GetString("numFixWhenPercent.ToolTip"));
this.numFixWhenPercent.Value = new decimal(new int[] {
51,
0,
@@ -501,7 +679,11 @@ namespace JDP {
//
// chkFilenamesANSISafe
//
+ this.chkFilenamesANSISafe.AccessibleDescription = null;
+ this.chkFilenamesANSISafe.AccessibleName = null;
resources.ApplyResources(this.chkFilenamesANSISafe, "chkFilenamesANSISafe");
+ this.chkFilenamesANSISafe.BackgroundImage = null;
+ this.chkFilenamesANSISafe.Font = null;
this.chkFilenamesANSISafe.Name = "chkFilenamesANSISafe";
this.toolTip1.SetToolTip(this.chkFilenamesANSISafe, resources.GetString("chkFilenamesANSISafe.ToolTip"));
this.chkFilenamesANSISafe.UseVisualStyleBackColor = true;
@@ -509,16 +691,24 @@ namespace JDP {
//
// chkWriteARTagsOnVerify
//
+ this.chkWriteARTagsOnVerify.AccessibleDescription = null;
+ this.chkWriteARTagsOnVerify.AccessibleName = null;
resources.ApplyResources(this.chkWriteARTagsOnVerify, "chkWriteARTagsOnVerify");
+ this.chkWriteARTagsOnVerify.BackgroundImage = null;
this.chkWriteARTagsOnVerify.Checked = true;
this.chkWriteARTagsOnVerify.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.chkWriteARTagsOnVerify.Font = null;
this.chkWriteARTagsOnVerify.Name = "chkWriteARTagsOnVerify";
this.toolTip1.SetToolTip(this.chkWriteARTagsOnVerify, resources.GetString("chkWriteARTagsOnVerify.ToolTip"));
this.chkWriteARTagsOnVerify.UseVisualStyleBackColor = true;
//
// chkHDCDDecode
//
+ this.chkHDCDDecode.AccessibleDescription = null;
+ this.chkHDCDDecode.AccessibleName = null;
resources.ApplyResources(this.chkHDCDDecode, "chkHDCDDecode");
+ this.chkHDCDDecode.BackgroundImage = null;
+ this.chkHDCDDecode.Font = null;
this.chkHDCDDecode.Name = "chkHDCDDecode";
this.toolTip1.SetToolTip(this.chkHDCDDecode, resources.GetString("chkHDCDDecode.ToolTip"));
this.chkHDCDDecode.UseVisualStyleBackColor = true;
@@ -526,27 +716,43 @@ namespace JDP {
//
// chkHDCDStopLooking
//
+ this.chkHDCDStopLooking.AccessibleDescription = null;
+ this.chkHDCDStopLooking.AccessibleName = null;
resources.ApplyResources(this.chkHDCDStopLooking, "chkHDCDStopLooking");
+ this.chkHDCDStopLooking.BackgroundImage = null;
+ this.chkHDCDStopLooking.Font = null;
this.chkHDCDStopLooking.Name = "chkHDCDStopLooking";
this.toolTip1.SetToolTip(this.chkHDCDStopLooking, resources.GetString("chkHDCDStopLooking.ToolTip"));
this.chkHDCDStopLooking.UseVisualStyleBackColor = true;
//
// chkHDCD24bit
//
+ this.chkHDCD24bit.AccessibleDescription = null;
+ this.chkHDCD24bit.AccessibleName = null;
resources.ApplyResources(this.chkHDCD24bit, "chkHDCD24bit");
+ this.chkHDCD24bit.BackgroundImage = null;
+ this.chkHDCD24bit.Font = null;
this.chkHDCD24bit.Name = "chkHDCD24bit";
this.toolTip1.SetToolTip(this.chkHDCD24bit, resources.GetString("chkHDCD24bit.ToolTip"));
this.chkHDCD24bit.UseVisualStyleBackColor = true;
//
// chkHDCDLW16
//
+ this.chkHDCDLW16.AccessibleDescription = null;
+ this.chkHDCDLW16.AccessibleName = null;
resources.ApplyResources(this.chkHDCDLW16, "chkHDCDLW16");
+ this.chkHDCDLW16.BackgroundImage = null;
+ this.chkHDCDLW16.Font = null;
this.chkHDCDLW16.Name = "chkHDCDLW16";
this.toolTip1.SetToolTip(this.chkHDCDLW16, resources.GetString("chkHDCDLW16.ToolTip"));
this.chkHDCDLW16.UseVisualStyleBackColor = true;
//
// grpAudioFilenames
//
+ this.grpAudioFilenames.AccessibleDescription = null;
+ this.grpAudioFilenames.AccessibleName = null;
+ resources.ApplyResources(this.grpAudioFilenames, "grpAudioFilenames");
+ this.grpAudioFilenames.BackgroundImage = null;
this.grpAudioFilenames.Controls.Add(this.chkFilenamesANSISafe);
this.grpAudioFilenames.Controls.Add(this.chkKeepOriginalFilenames);
this.grpAudioFilenames.Controls.Add(this.txtSpecialExceptions);
@@ -556,169 +762,277 @@ namespace JDP {
this.grpAudioFilenames.Controls.Add(this.lblTrackFilenameFormat);
this.grpAudioFilenames.Controls.Add(this.lblSingleFilenameFormat);
this.grpAudioFilenames.Controls.Add(this.txtSingleFilenameFormat);
- resources.ApplyResources(this.grpAudioFilenames, "grpAudioFilenames");
+ this.grpAudioFilenames.Font = null;
this.grpAudioFilenames.Name = "grpAudioFilenames";
this.grpAudioFilenames.TabStop = false;
+ this.toolTip1.SetToolTip(this.grpAudioFilenames, resources.GetString("grpAudioFilenames.ToolTip"));
//
// chkKeepOriginalFilenames
//
+ this.chkKeepOriginalFilenames.AccessibleDescription = null;
+ this.chkKeepOriginalFilenames.AccessibleName = null;
resources.ApplyResources(this.chkKeepOriginalFilenames, "chkKeepOriginalFilenames");
+ this.chkKeepOriginalFilenames.BackgroundImage = null;
this.chkKeepOriginalFilenames.Checked = true;
this.chkKeepOriginalFilenames.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.chkKeepOriginalFilenames.Font = null;
this.chkKeepOriginalFilenames.Name = "chkKeepOriginalFilenames";
+ this.toolTip1.SetToolTip(this.chkKeepOriginalFilenames, resources.GetString("chkKeepOriginalFilenames.ToolTip"));
this.chkKeepOriginalFilenames.UseVisualStyleBackColor = true;
//
// txtSpecialExceptions
//
+ this.txtSpecialExceptions.AccessibleDescription = null;
+ this.txtSpecialExceptions.AccessibleName = null;
resources.ApplyResources(this.txtSpecialExceptions, "txtSpecialExceptions");
+ this.txtSpecialExceptions.BackgroundImage = null;
+ this.txtSpecialExceptions.Font = null;
this.txtSpecialExceptions.Name = "txtSpecialExceptions";
+ this.toolTip1.SetToolTip(this.txtSpecialExceptions, resources.GetString("txtSpecialExceptions.ToolTip"));
//
// chkRemoveSpecial
//
+ this.chkRemoveSpecial.AccessibleDescription = null;
+ this.chkRemoveSpecial.AccessibleName = null;
resources.ApplyResources(this.chkRemoveSpecial, "chkRemoveSpecial");
+ this.chkRemoveSpecial.BackgroundImage = null;
this.chkRemoveSpecial.Checked = true;
this.chkRemoveSpecial.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.chkRemoveSpecial.Font = null;
this.chkRemoveSpecial.Name = "chkRemoveSpecial";
+ this.toolTip1.SetToolTip(this.chkRemoveSpecial, resources.GetString("chkRemoveSpecial.ToolTip"));
this.chkRemoveSpecial.UseVisualStyleBackColor = true;
this.chkRemoveSpecial.CheckedChanged += new System.EventHandler(this.chkRemoveSpecial_CheckedChanged);
//
// chkReplaceSpaces
//
+ this.chkReplaceSpaces.AccessibleDescription = null;
+ this.chkReplaceSpaces.AccessibleName = null;
resources.ApplyResources(this.chkReplaceSpaces, "chkReplaceSpaces");
+ this.chkReplaceSpaces.BackgroundImage = null;
this.chkReplaceSpaces.Checked = true;
this.chkReplaceSpaces.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.chkReplaceSpaces.Font = null;
this.chkReplaceSpaces.Name = "chkReplaceSpaces";
+ this.toolTip1.SetToolTip(this.chkReplaceSpaces, resources.GetString("chkReplaceSpaces.ToolTip"));
this.chkReplaceSpaces.UseVisualStyleBackColor = true;
//
// txtTrackFilenameFormat
//
+ this.txtTrackFilenameFormat.AccessibleDescription = null;
+ this.txtTrackFilenameFormat.AccessibleName = null;
resources.ApplyResources(this.txtTrackFilenameFormat, "txtTrackFilenameFormat");
+ this.txtTrackFilenameFormat.BackgroundImage = null;
+ this.txtTrackFilenameFormat.Font = null;
this.txtTrackFilenameFormat.Name = "txtTrackFilenameFormat";
+ this.toolTip1.SetToolTip(this.txtTrackFilenameFormat, resources.GetString("txtTrackFilenameFormat.ToolTip"));
//
// lblTrackFilenameFormat
//
+ this.lblTrackFilenameFormat.AccessibleDescription = null;
+ this.lblTrackFilenameFormat.AccessibleName = null;
resources.ApplyResources(this.lblTrackFilenameFormat, "lblTrackFilenameFormat");
+ this.lblTrackFilenameFormat.Font = null;
this.lblTrackFilenameFormat.Name = "lblTrackFilenameFormat";
+ this.toolTip1.SetToolTip(this.lblTrackFilenameFormat, resources.GetString("lblTrackFilenameFormat.ToolTip"));
//
// lblSingleFilenameFormat
//
+ this.lblSingleFilenameFormat.AccessibleDescription = null;
+ this.lblSingleFilenameFormat.AccessibleName = null;
resources.ApplyResources(this.lblSingleFilenameFormat, "lblSingleFilenameFormat");
+ this.lblSingleFilenameFormat.Font = null;
this.lblSingleFilenameFormat.Name = "lblSingleFilenameFormat";
+ this.toolTip1.SetToolTip(this.lblSingleFilenameFormat, resources.GetString("lblSingleFilenameFormat.ToolTip"));
//
// txtSingleFilenameFormat
//
+ this.txtSingleFilenameFormat.AccessibleDescription = null;
+ this.txtSingleFilenameFormat.AccessibleName = null;
resources.ApplyResources(this.txtSingleFilenameFormat, "txtSingleFilenameFormat");
+ this.txtSingleFilenameFormat.BackgroundImage = null;
+ this.txtSingleFilenameFormat.Font = null;
this.txtSingleFilenameFormat.Name = "txtSingleFilenameFormat";
+ this.toolTip1.SetToolTip(this.txtSingleFilenameFormat, resources.GetString("txtSingleFilenameFormat.ToolTip"));
//
// rbAPEinsane
//
+ this.rbAPEinsane.AccessibleDescription = null;
+ this.rbAPEinsane.AccessibleName = null;
resources.ApplyResources(this.rbAPEinsane, "rbAPEinsane");
+ this.rbAPEinsane.BackgroundImage = null;
+ this.rbAPEinsane.Font = null;
this.rbAPEinsane.Name = "rbAPEinsane";
this.rbAPEinsane.TabStop = true;
+ this.toolTip1.SetToolTip(this.rbAPEinsane, resources.GetString("rbAPEinsane.ToolTip"));
this.rbAPEinsane.UseVisualStyleBackColor = true;
//
// rbAPEextrahigh
//
+ this.rbAPEextrahigh.AccessibleDescription = null;
+ this.rbAPEextrahigh.AccessibleName = null;
resources.ApplyResources(this.rbAPEextrahigh, "rbAPEextrahigh");
+ this.rbAPEextrahigh.BackgroundImage = null;
+ this.rbAPEextrahigh.Font = null;
this.rbAPEextrahigh.Name = "rbAPEextrahigh";
this.rbAPEextrahigh.TabStop = true;
+ this.toolTip1.SetToolTip(this.rbAPEextrahigh, resources.GetString("rbAPEextrahigh.ToolTip"));
this.rbAPEextrahigh.UseVisualStyleBackColor = true;
//
// rbAPEhigh
//
+ this.rbAPEhigh.AccessibleDescription = null;
+ this.rbAPEhigh.AccessibleName = null;
resources.ApplyResources(this.rbAPEhigh, "rbAPEhigh");
+ this.rbAPEhigh.BackgroundImage = null;
+ this.rbAPEhigh.Font = null;
this.rbAPEhigh.Name = "rbAPEhigh";
this.rbAPEhigh.TabStop = true;
+ this.toolTip1.SetToolTip(this.rbAPEhigh, resources.GetString("rbAPEhigh.ToolTip"));
this.rbAPEhigh.UseVisualStyleBackColor = true;
//
// rbAPEnormal
//
+ this.rbAPEnormal.AccessibleDescription = null;
+ this.rbAPEnormal.AccessibleName = null;
resources.ApplyResources(this.rbAPEnormal, "rbAPEnormal");
+ this.rbAPEnormal.BackgroundImage = null;
+ this.rbAPEnormal.Font = null;
this.rbAPEnormal.Name = "rbAPEnormal";
this.rbAPEnormal.TabStop = true;
+ this.toolTip1.SetToolTip(this.rbAPEnormal, resources.GetString("rbAPEnormal.ToolTip"));
this.rbAPEnormal.UseVisualStyleBackColor = true;
//
// rbAPEfast
//
+ this.rbAPEfast.AccessibleDescription = null;
+ this.rbAPEfast.AccessibleName = null;
resources.ApplyResources(this.rbAPEfast, "rbAPEfast");
+ this.rbAPEfast.BackgroundImage = null;
+ this.rbAPEfast.Font = null;
this.rbAPEfast.Name = "rbAPEfast";
this.rbAPEfast.TabStop = true;
+ this.toolTip1.SetToolTip(this.rbAPEfast, resources.GetString("rbAPEfast.ToolTip"));
this.rbAPEfast.UseVisualStyleBackColor = true;
//
// tabControl1
//
+ this.tabControl1.AccessibleDescription = null;
+ this.tabControl1.AccessibleName = null;
resources.ApplyResources(this.tabControl1, "tabControl1");
+ this.tabControl1.BackgroundImage = null;
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Controls.Add(this.tabPage3);
this.tabControl1.Controls.Add(this.tabPage4);
+ this.tabControl1.Font = null;
this.tabControl1.HotTrack = true;
this.tabControl1.Multiline = true;
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
+ this.toolTip1.SetToolTip(this.tabControl1, resources.GetString("tabControl1.ToolTip"));
//
// tabPage1
//
+ this.tabPage1.AccessibleDescription = null;
+ this.tabPage1.AccessibleName = null;
+ resources.ApplyResources(this.tabPage1, "tabPage1");
this.tabPage1.BackColor = System.Drawing.Color.Transparent;
+ this.tabPage1.BackgroundImage = null;
this.tabPage1.Controls.Add(this.grpGeneral);
this.tabPage1.Controls.Add(this.grpAudioFilenames);
- resources.ApplyResources(this.tabPage1, "tabPage1");
+ this.tabPage1.Font = null;
this.tabPage1.Name = "tabPage1";
+ this.toolTip1.SetToolTip(this.tabPage1, resources.GetString("tabPage1.ToolTip"));
//
// tabPage2
//
+ this.tabPage2.AccessibleDescription = null;
+ this.tabPage2.AccessibleName = null;
+ resources.ApplyResources(this.tabPage2, "tabPage2");
this.tabPage2.BackColor = System.Drawing.SystemColors.Control;
+ this.tabPage2.BackgroundImage = null;
this.tabPage2.Controls.Add(this.groupBox3);
this.tabPage2.Controls.Add(this.groupBox1);
- resources.ApplyResources(this.tabPage2, "tabPage2");
+ this.tabPage2.Font = null;
this.tabPage2.Name = "tabPage2";
+ this.toolTip1.SetToolTip(this.tabPage2, resources.GetString("tabPage2.ToolTip"));
//
// groupBox3
//
+ this.groupBox3.AccessibleDescription = null;
+ this.groupBox3.AccessibleName = null;
+ resources.ApplyResources(this.groupBox3, "groupBox3");
+ this.groupBox3.BackgroundImage = null;
this.groupBox3.Controls.Add(this.chkWriteARLogOnVerify);
this.groupBox3.Controls.Add(this.chkWriteARTagsOnVerify);
- resources.ApplyResources(this.groupBox3, "groupBox3");
+ this.groupBox3.Font = null;
this.groupBox3.Name = "groupBox3";
this.groupBox3.TabStop = false;
+ this.toolTip1.SetToolTip(this.groupBox3, resources.GetString("groupBox3.ToolTip"));
//
// chkWriteARLogOnVerify
//
+ this.chkWriteARLogOnVerify.AccessibleDescription = null;
+ this.chkWriteARLogOnVerify.AccessibleName = null;
resources.ApplyResources(this.chkWriteARLogOnVerify, "chkWriteARLogOnVerify");
+ this.chkWriteARLogOnVerify.BackgroundImage = null;
this.chkWriteARLogOnVerify.Checked = true;
this.chkWriteARLogOnVerify.CheckState = System.Windows.Forms.CheckState.Checked;
+ this.chkWriteARLogOnVerify.Font = null;
this.chkWriteARLogOnVerify.Name = "chkWriteARLogOnVerify";
+ this.toolTip1.SetToolTip(this.chkWriteARLogOnVerify, resources.GetString("chkWriteARLogOnVerify.ToolTip"));
this.chkWriteARLogOnVerify.UseVisualStyleBackColor = true;
//
// tabPage3
//
- this.tabPage3.BackColor = System.Drawing.SystemColors.Control;
- this.tabPage3.Controls.Add(this.tabControl2);
+ this.tabPage3.AccessibleDescription = null;
+ this.tabPage3.AccessibleName = null;
resources.ApplyResources(this.tabPage3, "tabPage3");
+ this.tabPage3.BackColor = System.Drawing.SystemColors.Control;
+ this.tabPage3.BackgroundImage = null;
+ this.tabPage3.Controls.Add(this.tabControl2);
+ this.tabPage3.Font = null;
this.tabPage3.Name = "tabPage3";
+ this.toolTip1.SetToolTip(this.tabPage3, resources.GetString("tabPage3.ToolTip"));
//
// tabControl2
//
+ this.tabControl2.AccessibleDescription = null;
+ this.tabControl2.AccessibleName = null;
+ resources.ApplyResources(this.tabControl2, "tabControl2");
+ this.tabControl2.BackgroundImage = null;
this.tabControl2.Controls.Add(this.tabPage5);
this.tabControl2.Controls.Add(this.tabPage6);
this.tabControl2.Controls.Add(this.tabPage7);
this.tabControl2.Controls.Add(this.tabPage8);
this.tabControl2.Controls.Add(this.tabPage9);
- resources.ApplyResources(this.tabControl2, "tabControl2");
+ this.tabControl2.Font = null;
this.tabControl2.Multiline = true;
this.tabControl2.Name = "tabControl2";
this.tabControl2.SelectedIndex = 0;
+ this.toolTip1.SetToolTip(this.tabControl2, resources.GetString("tabControl2.ToolTip"));
//
// tabPage5
//
+ this.tabPage5.AccessibleDescription = null;
+ this.tabPage5.AccessibleName = null;
+ resources.ApplyResources(this.tabPage5, "tabPage5");
+ this.tabPage5.BackgroundImage = null;
this.tabPage5.Controls.Add(this.numericFLACCompressionLevel);
this.tabPage5.Controls.Add(this.lblFLACCompressionLevel);
this.tabPage5.Controls.Add(this.chkFLACVerify);
- resources.ApplyResources(this.tabPage5, "tabPage5");
+ this.tabPage5.Font = null;
this.tabPage5.Name = "tabPage5";
+ this.toolTip1.SetToolTip(this.tabPage5, resources.GetString("tabPage5.ToolTip"));
this.tabPage5.UseVisualStyleBackColor = true;
//
// tabPage6
//
+ this.tabPage6.AccessibleDescription = null;
+ this.tabPage6.AccessibleName = null;
+ resources.ApplyResources(this.tabPage6, "tabPage6");
+ this.tabPage6.BackgroundImage = null;
this.tabPage6.Controls.Add(this.chkWVStoreMD5);
this.tabPage6.Controls.Add(this.numWVExtraMode);
this.tabPage6.Controls.Add(this.rbWVFast);
@@ -726,43 +1040,62 @@ namespace JDP {
this.tabPage6.Controls.Add(this.rbWVNormal);
this.tabPage6.Controls.Add(this.rbWVVeryHigh);
this.tabPage6.Controls.Add(this.rbWVHigh);
- resources.ApplyResources(this.tabPage6, "tabPage6");
+ this.tabPage6.Font = null;
this.tabPage6.Name = "tabPage6";
+ this.toolTip1.SetToolTip(this.tabPage6, resources.GetString("tabPage6.ToolTip"));
this.tabPage6.UseVisualStyleBackColor = true;
//
// tabPage7
//
+ this.tabPage7.AccessibleDescription = null;
+ this.tabPage7.AccessibleName = null;
+ resources.ApplyResources(this.tabPage7, "tabPage7");
+ this.tabPage7.BackgroundImage = null;
this.tabPage7.Controls.Add(this.rbAPEinsane);
this.tabPage7.Controls.Add(this.rbAPEextrahigh);
this.tabPage7.Controls.Add(this.rbAPEfast);
this.tabPage7.Controls.Add(this.rbAPEhigh);
this.tabPage7.Controls.Add(this.rbAPEnormal);
- resources.ApplyResources(this.tabPage7, "tabPage7");
+ this.tabPage7.Font = null;
this.tabPage7.Name = "tabPage7";
+ this.toolTip1.SetToolTip(this.tabPage7, resources.GetString("tabPage7.ToolTip"));
this.tabPage7.UseVisualStyleBackColor = true;
//
// tabPage8
//
+ this.tabPage8.AccessibleDescription = null;
+ this.tabPage8.AccessibleName = null;
+ resources.ApplyResources(this.tabPage8, "tabPage8");
+ this.tabPage8.BackgroundImage = null;
this.tabPage8.Controls.Add(this.label1);
this.tabPage8.Controls.Add(this.numericLossyWAVQuality);
- resources.ApplyResources(this.tabPage8, "tabPage8");
+ this.tabPage8.Font = null;
this.tabPage8.Name = "tabPage8";
+ this.toolTip1.SetToolTip(this.tabPage8, resources.GetString("tabPage8.ToolTip"));
this.tabPage8.UseVisualStyleBackColor = true;
//
// label1
//
+ this.label1.AccessibleDescription = null;
+ this.label1.AccessibleName = null;
resources.ApplyResources(this.label1, "label1");
+ this.label1.Font = null;
this.label1.Name = "label1";
+ this.toolTip1.SetToolTip(this.label1, resources.GetString("label1.ToolTip"));
//
// numericLossyWAVQuality
//
+ this.numericLossyWAVQuality.AccessibleDescription = null;
+ this.numericLossyWAVQuality.AccessibleName = null;
resources.ApplyResources(this.numericLossyWAVQuality, "numericLossyWAVQuality");
+ this.numericLossyWAVQuality.Font = null;
this.numericLossyWAVQuality.Maximum = new decimal(new int[] {
10,
0,
0,
0});
this.numericLossyWAVQuality.Name = "numericLossyWAVQuality";
+ this.toolTip1.SetToolTip(this.numericLossyWAVQuality, resources.GetString("numericLossyWAVQuality.ToolTip"));
this.numericLossyWAVQuality.Value = new decimal(new int[] {
5,
0,
@@ -771,6 +1104,10 @@ namespace JDP {
//
// tabPage9
//
+ this.tabPage9.AccessibleDescription = null;
+ this.tabPage9.AccessibleName = null;
+ resources.ApplyResources(this.tabPage9, "tabPage9");
+ this.tabPage9.BackgroundImage = null;
this.tabPage9.Controls.Add(this.chkUDC1ID3v2);
this.tabPage9.Controls.Add(this.chkUDC1APEv2);
this.tabPage9.Controls.Add(this.label6);
@@ -783,112 +1120,188 @@ namespace JDP {
this.tabPage9.Controls.Add(this.label4);
this.tabPage9.Controls.Add(this.label3);
this.tabPage9.Controls.Add(this.label2);
- resources.ApplyResources(this.tabPage9, "tabPage9");
+ this.tabPage9.Font = null;
this.tabPage9.Name = "tabPage9";
+ this.toolTip1.SetToolTip(this.tabPage9, resources.GetString("tabPage9.ToolTip"));
this.tabPage9.UseVisualStyleBackColor = true;
//
+ // chkUDC1ID3v2
+ //
+ this.chkUDC1ID3v2.AccessibleDescription = null;
+ this.chkUDC1ID3v2.AccessibleName = null;
+ resources.ApplyResources(this.chkUDC1ID3v2, "chkUDC1ID3v2");
+ this.chkUDC1ID3v2.BackgroundImage = null;
+ this.chkUDC1ID3v2.Font = null;
+ this.chkUDC1ID3v2.Name = "chkUDC1ID3v2";
+ this.toolTip1.SetToolTip(this.chkUDC1ID3v2, resources.GetString("chkUDC1ID3v2.ToolTip"));
+ this.chkUDC1ID3v2.UseVisualStyleBackColor = true;
+ //
// chkUDC1APEv2
//
+ this.chkUDC1APEv2.AccessibleDescription = null;
+ this.chkUDC1APEv2.AccessibleName = null;
resources.ApplyResources(this.chkUDC1APEv2, "chkUDC1APEv2");
+ this.chkUDC1APEv2.BackgroundImage = null;
+ this.chkUDC1APEv2.Font = null;
this.chkUDC1APEv2.Name = "chkUDC1APEv2";
+ this.toolTip1.SetToolTip(this.chkUDC1APEv2, resources.GetString("chkUDC1APEv2.ToolTip"));
this.chkUDC1APEv2.UseVisualStyleBackColor = true;
//
// label6
//
+ this.label6.AccessibleDescription = null;
+ this.label6.AccessibleName = null;
resources.ApplyResources(this.label6, "label6");
+ this.label6.Font = null;
this.label6.Name = "label6";
+ this.toolTip1.SetToolTip(this.label6, resources.GetString("label6.ToolTip"));
//
// label5
//
+ this.label5.AccessibleDescription = null;
+ this.label5.AccessibleName = null;
resources.ApplyResources(this.label5, "label5");
+ this.label5.Font = null;
this.label5.Name = "label5";
+ this.toolTip1.SetToolTip(this.label5, resources.GetString("label5.ToolTip"));
//
// textUDC1EncParams
//
+ this.textUDC1EncParams.AccessibleDescription = null;
+ this.textUDC1EncParams.AccessibleName = null;
resources.ApplyResources(this.textUDC1EncParams, "textUDC1EncParams");
+ this.textUDC1EncParams.BackgroundImage = null;
+ this.textUDC1EncParams.Font = null;
this.textUDC1EncParams.Name = "textUDC1EncParams";
+ this.toolTip1.SetToolTip(this.textUDC1EncParams, resources.GetString("textUDC1EncParams.ToolTip"));
//
// textUDC1Encoder
//
+ this.textUDC1Encoder.AccessibleDescription = null;
+ this.textUDC1Encoder.AccessibleName = null;
resources.ApplyResources(this.textUDC1Encoder, "textUDC1Encoder");
+ this.textUDC1Encoder.BackgroundImage = null;
+ this.textUDC1Encoder.Font = null;
this.textUDC1Encoder.Name = "textUDC1Encoder";
+ this.toolTip1.SetToolTip(this.textUDC1Encoder, resources.GetString("textUDC1Encoder.ToolTip"));
//
// textUDC1Params
//
+ this.textUDC1Params.AccessibleDescription = null;
+ this.textUDC1Params.AccessibleName = null;
resources.ApplyResources(this.textUDC1Params, "textUDC1Params");
+ this.textUDC1Params.BackgroundImage = null;
+ this.textUDC1Params.Font = null;
this.textUDC1Params.Name = "textUDC1Params";
+ this.toolTip1.SetToolTip(this.textUDC1Params, resources.GetString("textUDC1Params.ToolTip"));
//
// textUDC1Decoder
//
+ this.textUDC1Decoder.AccessibleDescription = null;
+ this.textUDC1Decoder.AccessibleName = null;
resources.ApplyResources(this.textUDC1Decoder, "textUDC1Decoder");
+ this.textUDC1Decoder.BackgroundImage = null;
+ this.textUDC1Decoder.Font = null;
this.textUDC1Decoder.Name = "textUDC1Decoder";
+ this.toolTip1.SetToolTip(this.textUDC1Decoder, resources.GetString("textUDC1Decoder.ToolTip"));
//
// textUDC1Extension
//
+ this.textUDC1Extension.AccessibleDescription = null;
+ this.textUDC1Extension.AccessibleName = null;
resources.ApplyResources(this.textUDC1Extension, "textUDC1Extension");
+ this.textUDC1Extension.BackgroundImage = null;
+ this.textUDC1Extension.Font = null;
this.textUDC1Extension.Name = "textUDC1Extension";
+ this.toolTip1.SetToolTip(this.textUDC1Extension, resources.GetString("textUDC1Extension.ToolTip"));
//
// label4
//
+ this.label4.AccessibleDescription = null;
+ this.label4.AccessibleName = null;
resources.ApplyResources(this.label4, "label4");
+ this.label4.Font = null;
this.label4.Name = "label4";
+ this.toolTip1.SetToolTip(this.label4, resources.GetString("label4.ToolTip"));
//
// label3
//
+ this.label3.AccessibleDescription = null;
+ this.label3.AccessibleName = null;
resources.ApplyResources(this.label3, "label3");
+ this.label3.Font = null;
this.label3.Name = "label3";
+ this.toolTip1.SetToolTip(this.label3, resources.GetString("label3.ToolTip"));
//
// label2
//
+ this.label2.AccessibleDescription = null;
+ this.label2.AccessibleName = null;
resources.ApplyResources(this.label2, "label2");
+ this.label2.Font = null;
this.label2.Name = "label2";
+ this.toolTip1.SetToolTip(this.label2, resources.GetString("label2.ToolTip"));
//
// tabPage4
//
+ this.tabPage4.AccessibleDescription = null;
+ this.tabPage4.AccessibleName = null;
+ resources.ApplyResources(this.tabPage4, "tabPage4");
this.tabPage4.BackColor = System.Drawing.SystemColors.Control;
+ this.tabPage4.BackgroundImage = null;
this.tabPage4.Controls.Add(this.grpHDCD);
this.tabPage4.Controls.Add(this.chkHDCDDetect);
- resources.ApplyResources(this.tabPage4, "tabPage4");
+ this.tabPage4.Font = null;
this.tabPage4.Name = "tabPage4";
+ this.toolTip1.SetToolTip(this.tabPage4, resources.GetString("tabPage4.ToolTip"));
//
// grpHDCD
//
+ this.grpHDCD.AccessibleDescription = null;
+ this.grpHDCD.AccessibleName = null;
+ resources.ApplyResources(this.grpHDCD, "grpHDCD");
+ this.grpHDCD.BackgroundImage = null;
this.grpHDCD.Controls.Add(this.chkHDCD24bit);
this.grpHDCD.Controls.Add(this.chkHDCDLW16);
this.grpHDCD.Controls.Add(this.chkHDCDStopLooking);
this.grpHDCD.Controls.Add(this.chkHDCDDecode);
- resources.ApplyResources(this.grpHDCD, "grpHDCD");
+ this.grpHDCD.Font = null;
this.grpHDCD.Name = "grpHDCD";
this.grpHDCD.TabStop = false;
+ this.toolTip1.SetToolTip(this.grpHDCD, resources.GetString("grpHDCD.ToolTip"));
//
// chkHDCDDetect
//
+ this.chkHDCDDetect.AccessibleDescription = null;
+ this.chkHDCDDetect.AccessibleName = null;
resources.ApplyResources(this.chkHDCDDetect, "chkHDCDDetect");
+ this.chkHDCDDetect.BackgroundImage = null;
+ this.chkHDCDDetect.Font = null;
this.chkHDCDDetect.Name = "chkHDCDDetect";
+ this.toolTip1.SetToolTip(this.chkHDCDDetect, resources.GetString("chkHDCDDetect.ToolTip"));
this.chkHDCDDetect.UseVisualStyleBackColor = true;
this.chkHDCDDetect.CheckedChanged += new System.EventHandler(this.chkHDCDDetect_CheckedChanged);
//
- // chkUDC1ID3v2
- //
- resources.ApplyResources(this.chkUDC1ID3v2, "chkUDC1ID3v2");
- this.chkUDC1ID3v2.Name = "chkUDC1ID3v2";
- this.chkUDC1ID3v2.UseVisualStyleBackColor = true;
- //
// frmSettings
//
this.AcceptButton = this.btnOK;
+ this.AccessibleDescription = null;
+ this.AccessibleName = null;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackgroundImage = null;
this.CancelButton = btnCancel;
this.ControlBox = false;
this.Controls.Add(this.tabControl1);
this.Controls.Add(btnCancel);
this.Controls.Add(this.btnOK);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
+ this.Icon = null;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmSettings";
this.ShowIcon = false;
+ this.toolTip1.SetToolTip(this, resources.GetString("$this.ToolTip"));
this.Load += new System.EventHandler(this.frmSettings_Load);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmSettings_FormClosing);
this.grpGeneral.ResumeLayout(false);
diff --git a/CUETools/frmSettings.de-DE.resx b/CUETools/frmSettings.de-DE.resx
index 07bf4c3..0c99379 100644
--- a/CUETools/frmSettings.de-DE.resx
+++ b/CUETools/frmSettings.de-DE.resx
@@ -120,16 +120,31 @@
Abbrechen
+
+
+
+
+
+
+
+ 114, 17
+
Extrahier Logdatei
+
+
+
209, 17
Reduziere ProzessprioritΓ€t auf UntΓ€tig
+
+
+
225, 17
@@ -137,7 +152,7 @@
Nullsamples abschneiden, falls vorhanden
- Einige fehlerhafte FLAC-Kodierer fΓΌgen am Ende jeder Datei zusΓ€tzliche 4206 Nullsamples ein. Sie kΓΆnnen automatisch erkannt und entfernt werden
+ Einige fehlerhafte FLAC-Kodierer fΓΌgen am Ende jeder Datei zusΓ€tzliche 4608 Nullsamples ein. Sie kΓΆnnen automatisch erkannt und entfernt werden
232, 17
@@ -145,18 +160,27 @@
Erstelle .cue-Datei auch, wenn eingebettet
+
+
+
151, 17
Erstelle .m3u-Abspiellisten
+
+
+
255, 17
Fehlende CUE-Daten anhand der Tags auffΓΌllen
+
+
+
150, 17
@@ -166,6 +190,9 @@
Die Datei sollte im gleichen Verzeichnis sein und die Erweiterung .log haben.
+
+
+
183, 17
@@ -176,62 +203,104 @@
Zuvor Dateinamen korrigieren, wenn Audiodaten nicht gefunden werden kΓΆnnen
- 295, 17
+ 251, 17
HTOA fΓΌr Ausg. mit angeh. LΓΌcken beibehalten
+
+
+
+
+ 86, 13
+
Schreibe Offset:
+
+
+
271, 249
Allgemein
+
+
+
+
+
+
101, 13
Kompressionsstufe:
+
+
+
79, 17
Verifizieren
-
- 154, 17
+
+
+
+
+
Speichere MD5-Wert
+
+
+
+
+
+
87, 17
Extramodus:
+
+
+
73, 17
Sehr hoch
+
+
+
49, 17
Hoch
+
+
+
+
+
+
58, 17
Schnell
+
+
+
174, 62
@@ -241,18 +310,27 @@
und Null-Offset
+
+
+
132, 17
Korrigiere Offset, falls
+
+
+
149, 17
Schreibe AccurateRip-Log
+
+
+
155, 17
@@ -263,32 +341,62 @@
FΓΌge den Ausgabedateien ACCURATERIPCOUNT/ACCURATERIPCOUNTALLOFFSETS/ACCURATERIPTOTAL-Tags hinzu. Sie kΓΆnnen foobar2000 dazu bringen, die Werte anzuzeigen, und sehen, ob Ihre Musik korrekt kopiert wurde oder wie beliebt sie ist.
- 150, 13
+ 119, 13
% der verif. Tracks >=
+
+
+
+
+
+
91, 13
mit Vertrauen >=
+
+
+
+
+
+
113, 17
Nur kodieren, falls
+
+
+
mit Vertrauen >=
+
+
+
+
+
+
% der verif. Tracks >=
+
+
+
+
+
+
Verifizieren, dann konvertieren
+
+
+
163, 17
@@ -335,7 +443,7 @@
Wenn lossyWAV nicht verwendet wird, fΓΌr KompatibilitΓ€t auf 24 Bit erweitern
- 172, 17
+ 174, 17
Speichere als 16-Bit-LossyWAV
@@ -349,39 +457,63 @@
Originale Dateinamen beibehalten
+
+
+
137, 21
+
+
+
176, 17
Entferne Sonderzeichen auΓer:
+
+
+
207, 17
Ersetze Leerzeichen mit Unterstrichen
+
+
+
137, 21
+
+
+
69, 13
Trackformat:
+
+
+
- 92, 13
+ 70, 13
Einzelformat:
+
+
+
137, 21
+
+
+
283, 6
@@ -391,94 +523,199 @@
Audio-Dateinamen
+
+
+
65, 17
VerrΓΌckt
+
+
+
73, 17
Sehr hoch
+
+
+
49, 17
Hoch
+
+
+
+
+
+
58, 17
Schnell
+
+
+
+
+
+
149, 17
Schreibe AccurateRip-Log
+
+
+
Verifizieren
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
49, 13
QualitΓ€t:
+
+
+
+
+
+
+
+
+
+
+ 82, 17
+
+
+ ID3v2-Tags
+
+
+
+
+
+ 84, 17
+
+
+ APEv2-Tags
+
+
+
+
+
+ 57, 13
+
+
+ Parameter
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 57, 13
+
+
+ Parameter
+
+
+
+
+
+
+
+
+ 65, 13
+
+
+ Erweiterung
+
+
+
+
+
+ Benutzerdefiniert
+
+
+
+
+
+
+
+
+
+
205, 165
HDCD-Optionen
+
+
+
148, 17
Erkenne HDCD-Kodierung
+
+
+
+
+
+
+
+
+
Erweiterte Einstellungen
-
- FLAC
-
-
- WavPack
-
-
- Monkey's Audio
-
-
- LossyWAV
-
-
- Benutzerdefiniert
-
-
- ID3v2-Tags
-
-
- APEv2-Tags
-
-
- Erweiterung
-
-
- Decoder
-
-
- Parameter
-
-
- Encoder
-
-
- Parameter
+
+
\ No newline at end of file
diff --git a/CUETools/frmSettings.resx b/CUETools/frmSettings.resx
index f16645a..ceaae02 100644
--- a/CUETools/frmSettings.resx
+++ b/CUETools/frmSettings.resx
@@ -117,1292 +117,434 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- False
-
-
-
- 273, 290
-
-
- 73, 23
-
-
-
- 6
-
-
- Cancel
-
-
- btnCancel
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- $this
-
-
- 1
-
-
- True
-
-
- 30, 198
-
-
- 122, 17
-
-
- 11
-
-
- Overwrite CUE data
-
-
- chkOverwriteTags
-
-
+
System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- grpGeneral
-
-
- 0
-
-
- True
-
-
-
- NoControl
-
-
- 12, 95
-
-
- 95, 17
-
-
- 10
-
-
- Extract log file
-
-
- chkExtractLog
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpGeneral
-
-
- 1
-
-
- True
-
-
- NoControl
-
-
- 12, 163
-
-
- 173, 17
-
-
- 9
-
-
- Reduce process priority to Idle
-
-
- chkReducePriority
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpGeneral
-
-
- 2
-
-
- True
-
-
- 12, 146
-
-
- 215, 17
-
-
- 8
-
-
- Truncate extra 4206 samples if present
-
-
- 17, 17
-
-
- Some erroneous FLAC encoders add extra 4206 zero samples at the end of each file. These extra samples can be detected and removed.
-
-
- chkTruncateExtra4206Samples
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpGeneral
-
-
- 3
-
-
- True
-
-
- 12, 129
-
-
- 189, 17
-
-
- 7
-
-
- Create .cue file even if embedded
-
-
- chkCreateCUEFileWhenEmbedded
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpGeneral
-
-
- 4
-
-
- True
-
-
- 12, 112
-
-
- 127, 17
-
-
- 6
-
-
- Create .m3u playlists
-
-
- chkCreateM3U
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpGeneral
-
-
- 5
-
-
- True
-
-
- 12, 181
-
-
- 187, 17
-
-
- 5
-
-
- Fill up missing CUE data from tags
-
-
- chkFillUpCUE
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpGeneral
-
-
- 6
-
-
- True
-
-
- 12, 78
-
-
- 134, 17
-
-
- 4
-
-
- Embed log file as a tag
-
-
- File should be in the same directory as source file and have a .log extension
-
-
- chkEmbedLog
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpGeneral
-
-
- 7
-
-
- 133, 20
-
-
- 62, 21
-
-
- 1
-
-
- Right
-
-
- numericWriteOffset
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpGeneral
-
-
- 8
-
-
- True
-
-
- 12, 61
-
-
- 155, 17
-
-
- 3
-
-
- Locate audio files if missing
-
-
- Preprocess with filename corrector if unable to locate audio files
-
-
- chkAutoCorrectFilenames
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpGeneral
-
-
- 9
-
-
- True
-
-
- 12, 44
-
-
- 229, 17
-
-
- 2
-
-
- Preserve HTOA for gaps appended output
-
-
- chkPreserveHTOA
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpGeneral
-
-
- 10
-
-
- True
-
-
- 9, 23
-
-
- 118, 13
-
-
- 0
-
-
- Write offset (samples):
-
-
- lblWriteOffset
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpGeneral
-
-
- 11
-
-
- 6, 6
-
-
- 252, 249
-
-
- 0
-
-
- General
-
-
- grpGeneral
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage1
-
-
- 0
-
-
- 123, 6
-
-
- 36, 21
-
-
- 2
-
-
- Right
-
-
- numericFLACCompressionLevel
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage5
-
-
- 0
-
-
- True
-
-
- 6, 8
-
-
- 97, 13
-
-
- 1
-
-
- Compression level:
-
-
- lblFLACCompressionLevel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage5
-
-
- 1
-
-
- True
-
-
- 9, 37
-
-
- 54, 17
-
-
- 0
-
-
- Verify
-
-
- chkFLACVerify
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage5
-
-
- 2
-
-
- 194, 290
-
-
- 73, 23
-
-
- 5
-
-
- OK
-
-
- btnOK
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- $this
-
-
- 2
-
-
- True
-
-
- 5, 101
-
-
- 125, 17
-
-
- 6
-
-
- Store MD5 checksum
-
-
- chkWVStoreMD5
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage6
-
-
- 0
-
-
- 96, 78
-
-
- 36, 21
-
-
- 5
-
-
- Right
-
-
- numWVExtraMode
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage6
-
-
- 1
-
-
- True
-
-
- 5, 79
-
-
- 85, 17
-
-
- 4
-
-
- Extra mode:
-
-
- chkWVExtraMode
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage6
-
-
- 3
-
-
- True
-
-
- 6, 57
-
-
- 71, 17
-
-
- 3
-
-
- Very High
-
rbWVVeryHigh
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ grpHDCD
-
- tabPage6
+
+
+ 3, 3, 3, 3
-
- 5
+
+
+ 11, 71
-
- True
+
+
-
- 6, 40
+
+
-
- 46, 17
+
+ HDCD options
-
+
+
2
-
- High
-
-
- rbWVHigh
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage6
-
-
- 6
-
-
- True
-
-
- 6, 23
-
-
- 58, 17
-
-
- 1
-
-
- Normal
-
-
- rbWVNormal
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage6
-
-
- 4
-
-
- True
-
-
- 6, 6
-
-
- 46, 17
-
-
- 0
-
-
- Fast
-
-
- rbWVFast
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage6
-
-
+
2
-
- Top, Right
-
-
+
True
-
- 173, 62
-
-
- Yes
-
-
- 100, 17
-
-
- 12
-
-
- and zero offset
-
-
- chkEncodeWhenZeroOffset
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 0
-
-
- True
-
-
- 6, 81
-
-
- 81, 17
-
-
- 7
-
-
- Fix offset if
-
-
- chkArFixOffset
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
+
1
-
- True
-
-
- 6, 172
-
-
- 130, 17
-
-
- 1
-
-
- Write AccurateRip log
-
-
- chkWriteArLogOnConvert
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 2
-
-
- True
-
-
- 6, 149
-
-
- 137, 17
-
-
- 0
-
-
- Write AccurateRip tags
-
-
- Add ACCURATERIPCOUNT/ACCURATERIPCOUNTALLOFFSETS/ACCURATERIPTOTAL tags to output files. You can set up foobar2000 to show those values, and see if your music was ripped correctly or how popular it is.
-
-
- chkWriteArTagsOnConvert
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
groupBox1
-
- 3
-
-
- Top, Right
-
-
- True
-
-
- 108, 21
-
-
- 121, 13
-
-
- 3
-
-
- % of verified tracks >=
-
-
- labelEncodeWhenPercent
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 4
-
-
- 235, 19
-
-
- 38, 21
-
-
- 4
-
-
- numEncodeWhenPercent
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 5
-
-
- Top, Right
-
-
- True
-
-
- 128, 42
-
-
- 101, 13
-
-
- 5
-
-
- with confidence >=
-
-
- labelEncodeWhenConfidence
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 6
-
-
- 235, 40
-
-
- 38, 21
-
-
- 6
-
-
- numEncodeWhenConfidence
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 7
-
-
- True
-
-
- 6, 20
-
-
- 93, 17
-
-
- 2
-
-
- Encode only if
-
-
- chkArNoUnverifiedAudio
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 8
-
-
- 128, 101
-
-
- 101, 23
-
-
- 10
-
-
- with confidence >=
-
-
- labelFixWhenConfidence
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 9
-
-
- 235, 101
-
-
- 37, 21
-
-
- 11
-
-
- numFixWhenConfidence
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 10
-
-
- 108, 82
-
-
- 121, 23
-
-
- 8
-
-
- % of verified tracks >=
-
-
- labelFixWhenPercent
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 11
-
-
- 235, 80
-
-
- 38, 21
-
-
- 9
-
-
- numFixWhenPercent
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox1
-
-
- 12
-
-
- 226, 6
-
-
- 295, 215
-
-
- 2
-
-
- Verify, then convert
-
-
- groupBox1
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage2
-
-
- 1
-
-
- True
-
-
- 12, 98
-
-
- 128, 17
-
-
- 7
-
-
- Force ANSI filenames
-
-
- Only allow characters, which are present in ANSI codepage, for compatibility with non-unicode applications
-
-
- chkFilenamesANSISafe
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpAudioFilenames
-
-
- 0
-
-
- True
-
-
- NoControl
-
-
- 6, 149
-
-
- 137, 17
-
-
- 2
-
-
- Write AccurateRip tags
-
-
- Add ACCURATERIPCOUNT/ACCURATERIPCOUNTALLOFFSETS/ACCURATERIPTOTAL tags to input files. You can set up foobar2000 to show those values, and see if your music was ripped correctly or how popular it is.
-
-
- chkWriteARTagsOnVerify
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 1
-
-
- True
-
-
- 6, 43
-
-
- 136, 17
-
-
- 1
-
-
- Decode HDCD to 20 bit
-
-
- HDCD decoding is irreversable. Resulting files cannot be burned to the CD. 24-bit audio files are created, but the actual resolution is 20 bit
-
-
- chkHDCDDecode
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpHDCD
-
-
- 3
-
-
- True
-
-
- 6, 20
-
-
- 168, 17
-
-
- 2
-
-
- Stop looking after 750 frames
-
-
- Stop looking for HDCD information, If none found in first 10 seconds of the disc
-
-
- chkHDCDStopLooking
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpHDCD
-
-
- 2
-
-
- True
-
-
- NoControl
-
-
- 23, 89
-
-
- 143, 17
+
+ tabPage6
4
-
- Store as 24 bit "lossless"
-
-
- When not using lossyWAV, extend to 24 bit for compatibility
-
-
- chkHDCD24bit
-
-
+
System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- grpHDCD
+
+ 125, 17
-
- 0
+
+ $this
-
+
+ Top, Left, Right
+
+
+ 512, 223
+
+
+ 1
+
+
+ 2
+
+
+ 11
+
+
True
-
- 23, 66
+
+ 81, 17
-
- 149, 17
+
+ Some erroneous FLAC encoders add extra 4608 zero samples at the end of each file. These extra samples can be detected and removed.
-
+
+ OK
+
+
+ toolTip1
+
+
+ chkReplaceSpaces
+
+
3
-
- Store as 16 bit LossyWAV
+
+ True
-
- When converting to lossyWAV, truncate to 16 bit
+
+ 8
+
+
+ Monkey's Audio
+
+
+ 122, 17
+
+
+ 5
+
+
+ 97, 13
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 89, 60
+
+
+ True
+
+
+ tabPage6
+
+
+
+
+
+ 46, 17
+
+
+ 2
+
+
+ 8
+
+
+ True
+
+
+ 417, 21
+
+
+ tabPage9
+
+
+ 1
+
+
+ 0
+
+
+ High
+
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ numericWriteOffset
+
+
+ 6, 63
+
+
+ True
+
+
+ General
+
+
+ Write AccurateRip tags
+
+
+ 4, 22
+
+
+ 79, 17
+
+
+ Preserve HTOA for gaps appended output
+
+
+ True
+
+
+ 0
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 3, 3, 3, 3
+
+
+ tabControl1
+
+
+ rbAPEhigh
+
+
+ 0
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ labelFixWhenConfidence
+
+
+ 96, 78
+
+
+ 173, 62
+
+
+ 12
+
+
+ 235, 40
chkHDCDLW16
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 38, 21
-
- grpHDCD
+
+ chkWriteArLogOnConvert
-
- 1
+
+ groupBox1
-
- True
+
+
-
- NoControl
+
+ chkWriteArTagsOnConvert
-
- 12, 20
-
-
- 135, 17
-
-
+
0
-
- Keep original filenames
+
+ Track format:
-
- chkKeepOriginalFilenames
+
+ 2
-
+
+ 155, 17
+
+
+ 75, 17
+
+
System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- grpAudioFilenames
+
+ 2
-
- 1
+
+ NoControl
-
- 97, 132
+
+ label5
+
+
+ True
+
+
+ tabPage1
+
+
+ True
+
+
+ True
+
+
+ 0
+
+
+ 2
+
+
+
+
+
+ labelEncodeWhenConfidence
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
149, 21
-
+
+ When converting to lossyWAV, truncate to 16 bit
+
+
+ 23, 89
+
+
+ NoControl
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
6
-
- -()
+
+ groupBox1
-
- txtSpecialExceptions
+
+ tabPage7
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 71, 17
-
- grpAudioFilenames
+
+ rbWVFast
-
+
+ 121, 23
+
+
+ 36, 21
+
+
+ tabPage5
+
+
+ groupBox1
+
+
2
-
+
+ 3
+
+
+ chkHDCDDetect
+
+
+ NoControl
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 3
+
+
True
-
- NoControl
+
+
+
+
+ tabPage6
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 6
+
+
+ 8
+
+
+ grpGeneral
+
+
+ groupBox3
+
+
+ 5
+
+
+ Write AccurateRip log
+
+
+ 38, 21
+
+
+ 9
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 7
+
+
+
+
+
+ True
+
+
+ 535, 261
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ chkArNoUnverifiedAudio
+
+
+ 38, 21
+
+
+ 12, 61
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+
+
+ 0
34, 115
@@ -1410,1093 +552,2188 @@
194, 17
-
- 5
+
+ 5, 79
-
- Remove special characters except:
-
-
- chkRemoveSpecial
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpAudioFilenames
-
-
- 3
-
-
- True
-
-
- NoControl
-
-
- 12, 165
-
-
- 185, 17
-
-
- 7
-
-
- Replace spaces with underscores
-
-
- chkReplaceSpaces
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpAudioFilenames
-
-
- 4
-
-
- 97, 68
-
-
- 149, 21
-
-
- 4
-
-
- %N-%A-%T
-
-
- txtTrackFilenameFormat
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpAudioFilenames
-
-
- 5
-
-
- True
-
-
- NoControl
-
-
- 11, 71
-
-
- 72, 13
-
-
- 3
-
-
- Track format:
-
-
- lblTrackFilenameFormat
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpAudioFilenames
-
-
- 6
-
-
- True
-
-
- NoControl
-
-
- 9, 43
-
-
- 74, 13
-
-
- 1
-
-
- Single format:
-
-
- lblSingleFilenameFormat
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpAudioFilenames
-
-
- 7
-
-
- 97, 40
-
-
- 149, 21
-
-
- 2
-
-
- %F
-
-
- txtSingleFilenameFormat
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- grpAudioFilenames
-
-
- 8
-
-
- 264, 6
-
-
- 252, 249
-
-
- 1
-
-
- Audio Filenames
-
-
- grpAudioFilenames
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage1
-
-
- 1
-
-
- True
-
-
- 6, 74
-
-
- 58, 17
-
-
- 4
-
-
- Insane
-
-
- rbAPEinsane
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage7
-
-
- 0
-
-
- True
-
-
- 6, 57
-
-
- 75, 17
-
-
- 3
-
-
- Extra High
-
-
- rbAPEextrahigh
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage7
-
-
- 1
-
-
- True
-
-
- 6, 40
-
-
- 46, 17
-
-
- 2
-
-
- High
-
-
- rbAPEhigh
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage7
-
-
- 3
-
-
- True
-
-
- 6, 23
-
-
- 58, 17
-
-
- 1
-
-
- Normal
-
-
- rbAPEnormal
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage7
-
-
- 4
-
-
- True
-
-
- 6, 6
-
-
- 46, 17
-
-
- 0
-
-
- Fast
-
-
- rbAPEfast
-
-
- System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage7
-
-
- 2
-
-
- Top, Left, Right
-
-
- 4, 22
-
-
- 3, 3, 3, 3
-
-
- 535, 261
-
-
- 0
-
-
- CUETools
-
-
- tabPage1
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabControl1
-
-
- 0
-
-
- True
-
-
- NoControl
-
-
- 5, 172
-
-
- 130, 17
-
-
- 3
-
-
- Write AccurateRip log
-
-
- chkWriteARLogOnVerify
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox3
-
-
- 0
-
-
- 8, 6
-
-
- 212, 215
-
-
- 3
-
-
- Verify
-
-
- groupBox3
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage2
-
-
- 0
-
-
- 4, 22
-
-
- 3, 3, 3, 3
-
-
- 535, 261
-
-
- 1
-
-
- AccurateRip
-
-
- tabPage2
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabControl1
-
-
- 1
-
-
- 4, 22
-
-
- 3, 3, 3, 3
-
-
- 512, 223
-
-
- 0
-
-
- FLAC
-
-
- tabPage5
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabControl2
-
-
- 0
-
-
- 4, 22
-
-
- 3, 3, 3, 3
-
-
- 512, 223
-
-
- 1
-
-
- WavPack
-
-
- tabPage6
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabControl2
-
-
- 1
-
-
- 4, 22
-
-
- 3, 3, 3, 3
-
-
- 512, 223
-
-
- 2
-
-
- Monkey's Audio
-
-
- tabPage7
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabControl2
-
-
- 2
-
-
- True
-
-
- NoControl
-
-
- 6, 12
-
-
- 45, 13
-
-
- 3
-
-
- Quality:
-
-
- label1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage8
-
-
- 0
-
-
- 98, 10
-
-
- 36, 21
-
-
- 4
-
-
- Right
-
-
- numericLossyWAVQuality
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage8
-
-
- 1
-
-
- 4, 22
-
-
- 3, 3, 3, 3
-
-
- 512, 223
-
-
- 3
-
-
- LossyWAV
-
-
- tabPage8
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabControl2
-
-
- 3
-
-
- True
-
-
- 268, 8
-
-
- 79, 17
-
-
- 11
-
-
- ID3v2 tags
-
-
- chkUDC1ID3v2
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage9
-
-
- 0
-
-
- True
-
-
- 162, 8
-
-
- 81, 17
-
-
- 10
-
-
- APEv2 tags
+
+ labelEncodeWhenPercent
chkUDC1APEv2
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
-
- tabPage9
+
+
-
- 1
-
-
- True
-
-
- 6, 117
-
-
- 62, 13
-
-
- 9
-
-
- Parameters
-
-
- label6
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage9
-
-
+
2
-
+
+ numericLossyWAVQuality
+
+
+
+
+
+ 6, 20
+
+
+ 74, 13
+
+
+ 3, 3, 3, 3
+
+
True
-
- 6, 90
+
+ 11
-
- 46, 13
-
-
- 8
-
-
- Encoder
-
-
- label5
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage9
-
-
- 3
-
-
- 89, 114
-
-
- 417, 21
-
-
- 7
-
-
- textUDC1EncParams
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage9
-
-
- 4
-
-
- 89, 87
-
-
- 417, 21
-
-
- 6
-
-
- textUDC1Encoder
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage9
-
-
- 5
-
-
- 89, 60
-
-
- 417, 21
-
-
- 5
-
-
- textUDC1Params
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage9
-
-
- 6
-
-
- 89, 33
-
-
- 417, 21
-
-
- 4
-
-
- textUDC1Decoder
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage9
-
-
- 7
-
-
- 89, 6
-
-
- 67, 21
-
-
- 3
-
-
- textUDC1Extension
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage9
-
-
- 8
-
-
- True
-
-
- 6, 63
-
-
- 62, 13
-
-
+
2
-
- Parameters
-
-
- label4
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage9
-
-
- 9
-
-
- True
-
-
- 6, 36
-
-
- 47, 13
-
-
- 1
-
-
- Decoder
-
-
- label3
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage9
-
-
- 10
-
-
- True
-
-
- 6, 9
-
54, 13
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ When not using lossyWAV, extend to 24 bit for compatibility
+
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+
+
+ 3, 3, 3, 3
+
+
+ 36, 21
+
+
+ Normal
+
+
+ tabPage9
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ % of verified tracks >=
+
+
+ Very High
+
+
+ 108, 82
+
+
+ 58, 17
+
+
+ grpAudioFilenames
+
+
+ True
+
+
+ tabPage7
+
+
+ 3, 3, 3, 3
+
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 5
+
+
+ 3, 3, 3, 3
+
+
+ 4
+
+
+ 149, 21
+
+
+ 4
+
+
+ 6, 57
+
+
+ chkFillUpCUE
+
+
+ WavPack
+
+
+ tabPage1
+
+
+ 6, 9
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Verify
+
+
+ 2
+
+
+ groupBox3
+
+
+ 89, 6
+
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ APEv2 tags
+
+
+ 7
+
+
+ Quality:
+
+
+ 6
+
+
+ 10
+
+
+ 4
+
+
+ True
+
+
+ 7
+
+
+ 47, 13
+
+
+ 7
+
+
+ 101, 13
+
+
+ 235, 101
+
+
+ grpGeneral
+
+
+ 1
+
+
+ 417, 21
+
+
+ 89, 114
+
+
+ 0
+
+
+ 73, 23
+
+
+ ID3v2 tags
+
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ NoControl
+
+
+ 37, 21
+
+
+ 4
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grpGeneral
+
+
+ grpGeneral
+
+
+ lblSingleFilenameFormat
+
+
+ 1
+
+
+ 62, 13
+
+
+ tabPage2
+
+
+ 1
+
+
+ 535, 261
+
+
+ grpGeneral
+
+
+ True
+
+
+ grpGeneral
+
+
+
+
+
+ 9
+
+
+ 10
+
+
+ label2
+
+
+ grpAudioFilenames
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 3, 3, 3, 3
+
+
+ 0, 0
+
+
+ tabControl1
+
+
+ 252, 249
+
+
+ True
+
+
+ Truncate extra 4608 samples if present
+
+
+ 1
+
+
+ 6, 6
+
+
+ 9
+
+
+ True
+
+
+ 2
+
+
+
+
+
+ True
+
+
+ 8, 6
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ chkEncodeWhenZeroOffset
+
+
+
+
+
+ Remove special characters except:
+
+
+ 1
+
+
+ Verify
+
+
+ 3
+
+
+
+
+
+ 6, 40
+
+
+ Store as 24 bit "lossless"
+
+
+ 417, 21
+
+
+ 8
+
+
+ 4
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ chkAutoCorrectFilenames
+
+
+ rbAPEinsane
+
+
+ tabPage4
+
+
+
+
+
+ 89, 33
+
+
+ with confidence >=
+
+
+ groupBox3
+
+
+ 3
+
+
+ tabControl2
+
+
+ grpGeneral
+
+
+ 6, 117
+
+
+ 252, 249
+
+
+ 1
+
+
+ 268, 8
+
+
+ Stop looking for HDCD information, If none found in first 10 seconds of the disc
+
+
+
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ label4
+
+
+ 7
+
+
+ tabPage6
+
+
+ 135, 17
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 3
+
+
+ grpAudioFilenames
+
+
+
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+
+
+ 6, 23
+
+
+ tabControl2
+
+
+ 6, 6
+
+
+ chkArFixOffset
+
+
+ Fast
+
+
+
+
+
+ 1
+
0
+
+ CenterParent
+
+
+ chkHDCDDecode
+
+
+ 4
+
+
+ Top, Right
+
+
+ tabControl2
+
+
+ tabPage1
+
+
+
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ True
+
+
+ 2
+
+
+ 264, 6
+
+
+ 137, 17
+
+
+ Embed log file as a tag
+
+
+ grpAudioFilenames
+
+
+
+
+
+ Detect HDCD encoding
+
+
+ 4, 22
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 173, 17
+
+
+ 97, 132
+
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+
+
+
+
+
+ chkCreateM3U
+
+
+ 1
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 1
+
+
+ 128, 17
+
+
+ 11
+
+
+ 5
+
+
+ rbAPEextrahigh
+
+
+ Single format:
+
+
+ 6, 20
+
+
+ 3
+
+
+ tabPage9
+
+
+
+
+
+ 2
+
+
+ 3, 3, 3, 3
+
+
+ 1
+
+
+ 6, 40
+
+
+ 0
+
+
+ 3
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ NoControl
+
+
+ Insane
+
+
+
+
+
+ 1
+
+
+ 512, 223
+
+
+ 121, 13
+
+
+ Parameters
+
+
+ groupBox1
+
+
+ 0
+
+
+ 229, 17
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 520, 249
+
+
+ 6
+
+
+ 0
+
Extension
-
- label2
+
+ 4
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ lblWriteOffset
-
- tabPage9
+
+ grpAudioFilenames
-
- 11
-
-
- 4, 22
-
-
- 3, 3, 3, 3
-
-
+
512, 223
-
- 4
+
+ Write AccurateRip tags
-
- User defined
+
+ textUDC1Encoder
-
- tabPage9
+
+ True
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- tabControl2
+
+ NoControl
-
- 4
+
+ btnCancel
-
- 6, 6
+
+
-
- 520, 249
+
+ 3
-
- 9
+
+ Only allow characters, which are present in ANSI codepage, for compatibility with non-unicode applications
-
- tabControl2
+
+ 6
-
- System.Windows.Forms.TabControl, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+
+ 3
+
+
+ 133, 20
+
+
+ 45, 13
tabPage3
-
- 0
+
+ Locate audio files if missing
-
- 4, 22
+
+ 1
-
- 3, 3, 3, 3
+
+
-
- 535, 261
+
+ textUDC1EncParams
-
- 2
+
+ txtTrackFilenameFormat
-
- Codecs
-
-
- tabPage3
-
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabControl1
-
-
- 2
-
-
- 19, 42
-
-
- 203, 165
-
-
- 2
-
-
- HDCD options
-
-
- grpHDCD
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage4
-
-
- 0
-
-
- True
-
-
- 19, 19
+
+
135, 17
-
+
+ 128, 42
+
+
+ 46, 17
+
+
0
-
- Detect HDCD encoding
-
-
- chkHDCDDetect
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage4
-
-
- 1
-
-
+
4, 22
-
- 3, 3, 3, 3
+
+ 46, 17
+
+
+ $this
535, 261
-
+
+ 6, 43
+
+
+ Create .m3u playlists
+
+
+ Right
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ chkFLACVerify
+
+
+ lblTrackFilenameFormat
+
+
+ HDCD decoding is irreversable. Resulting files cannot be burned to the CD. 24-bit audio files are created, but the actual resolution is 20 bit
+
+
+ %N-%A-%T
+
+
+ 6, 12
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 12, 165
+
+
+ 535, 261
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 9
+
+
+ 2
+
+
+ groupBox1
+
+
+
+
+
+ 7
+
+
+ label1
+
+
+ Right
+
+
+ 73, 23
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
3
-
- HDCD
+
+ 6, 36
-
- tabPage4
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- System.Windows.Forms.TabPage, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 3
-
+
+