diff --git a/CUETools.Processor/CUEConfigAdvanced.cs b/CUETools.Processor/CUEConfigAdvanced.cs
index 85eafe4..6aca308 100644
--- a/CUETools.Processor/CUEConfigAdvanced.cs
+++ b/CUETools.Processor/CUEConfigAdvanced.cs
@@ -52,7 +52,7 @@ namespace CUETools.Processor
[DefaultValue(""), Category("Proxy"), DisplayName("Proxy auth password")]
public string ProxyPassword { get; set; }
- [DefaultValue(true), DisplayName("Cache metadata")]
+ [DefaultValue(true), Category("Tagging"), DisplayName("Cache metadata")]
public bool CacheMetadata { get; set; }
[DefaultValue(new string[] { "folder.jpg", "cover.jpg", "albumart.jpg", "thumbnail.jpg", "albumartlarge.jpg", "front.jpg", "%album%.jpg" })]
diff --git a/CUETools/frmSettings.Designer.cs b/CUETools/frmSettings.Designer.cs
index 2d8f918..2b81843 100644
--- a/CUETools/frmSettings.Designer.cs
+++ b/CUETools/frmSettings.Designer.cs
@@ -75,6 +75,8 @@ namespace JDP
this.rbGapsAppended = new System.Windows.Forms.RadioButton();
this.rbGapsPlusHTOA = new System.Windows.Forms.RadioButton();
this.textBoxEncoderName = new System.Windows.Forms.TextBox();
+ this.textBoxDecoderName = new System.Windows.Forms.TextBox();
+ this.bindingSourceDecoders = new System.Windows.Forms.BindingSource(this.components);
this.grpAudioFilenames = new System.Windows.Forms.GroupBox();
this.txtSpecialExceptions = new System.Windows.Forms.TextBox();
this.chkRemoveSpecial = new System.Windows.Forms.CheckBox();
@@ -149,6 +151,7 @@ namespace JDP
this.tabPage11 = new System.Windows.Forms.TabPage();
this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
this.groupBoxExternalDecoder = new System.Windows.Forms.GroupBox();
+ this.label4 = new System.Windows.Forms.Label();
this.textBoxDecoderPath = new System.Windows.Forms.TextBox();
this.labelDecoderPath = new System.Windows.Forms.Label();
this.labelDecoderParameters = new System.Windows.Forms.Label();
@@ -158,6 +161,7 @@ namespace JDP
this.buttonDecoderAdd = new System.Windows.Forms.Button();
this.comboBoxDecoderExtension = new System.Windows.Forms.ComboBox();
this.labelDecoderExtension = new System.Windows.Forms.Label();
+ this.listBoxDecoders = new System.Windows.Forms.ListBox();
this.tabPage4 = new System.Windows.Forms.TabPage();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.label1 = new System.Windows.Forms.Label();
@@ -178,10 +182,6 @@ namespace JDP
this.labelFormatEncoder = new System.Windows.Forms.Label();
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.checkBox1 = new System.Windows.Forms.CheckBox();
- this.label4 = new System.Windows.Forms.Label();
- this.textBoxDecoderName = new System.Windows.Forms.TextBox();
- this.bindingSourceDecoders = new System.Windows.Forms.BindingSource(this.components);
- this.listBoxDecoders = new System.Windows.Forms.ListBox();
btnCancel = new System.Windows.Forms.Button();
this.grpGeneral.SuspendLayout();
this.groupBox1.SuspendLayout();
@@ -191,6 +191,7 @@ namespace JDP
((System.ComponentModel.ISupportInitialize)(this.numFixWhenPercent)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.encodersBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.cUEConfigBindingSource)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.bindingSourceDecoders)).BeginInit();
this.grpAudioFilenames.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
@@ -225,7 +226,6 @@ namespace JDP
this.tabPage5.SuspendLayout();
this.groupBoxScriptConditions.SuspendLayout();
this.tabPage7.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.bindingSourceDecoders)).BeginInit();
this.SuspendLayout();
//
// btnCancel
@@ -354,6 +354,7 @@ namespace JDP
//
// chkEncodeWhenZeroOffset
//
+ this.tableLayoutPanel2.SetColumnSpan(this.chkEncodeWhenZeroOffset, 2);
resources.ApplyResources(this.chkEncodeWhenZeroOffset, "chkEncodeWhenZeroOffset");
this.chkEncodeWhenZeroOffset.Name = "chkEncodeWhenZeroOffset";
//
@@ -602,6 +603,21 @@ namespace JDP
this.textBoxEncoderName.Name = "textBoxEncoderName";
this.toolTip1.SetToolTip(this.textBoxEncoderName, resources.GetString("textBoxEncoderName.ToolTip"));
//
+ // textBoxDecoderName
+ //
+ resources.ApplyResources(this.textBoxDecoderName, "textBoxDecoderName");
+ this.textBoxDecoderName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSourceDecoders, "Name", true));
+ this.textBoxDecoderName.Name = "textBoxDecoderName";
+ this.toolTip1.SetToolTip(this.textBoxDecoderName, resources.GetString("textBoxDecoderName.ToolTip"));
+ //
+ // bindingSourceDecoders
+ //
+ this.bindingSourceDecoders.AllowNew = true;
+ this.bindingSourceDecoders.DataMember = "Decoders";
+ this.bindingSourceDecoders.DataSource = this.cUEConfigBindingSource;
+ this.bindingSourceDecoders.Sort = "";
+ this.bindingSourceDecoders.CurrentItemChanged += new System.EventHandler(this.bindingSourceDecoders_CurrentItemChanged);
+ //
// grpAudioFilenames
//
this.grpAudioFilenames.Controls.Add(this.chkFilenamesANSISafe);
@@ -1213,6 +1229,11 @@ namespace JDP
this.groupBoxExternalDecoder.Name = "groupBoxExternalDecoder";
this.groupBoxExternalDecoder.TabStop = false;
//
+ // label4
+ //
+ resources.ApplyResources(this.label4, "label4");
+ this.label4.Name = "label4";
+ //
// textBoxDecoderPath
//
resources.ApplyResources(this.textBoxDecoderPath, "textBoxDecoderPath");
@@ -1274,6 +1295,17 @@ namespace JDP
resources.ApplyResources(this.labelDecoderExtension, "labelDecoderExtension");
this.labelDecoderExtension.Name = "labelDecoderExtension";
//
+ // listBoxDecoders
+ //
+ this.listBoxDecoders.BackColor = System.Drawing.SystemColors.Control;
+ this.listBoxDecoders.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.listBoxDecoders.DataSource = this.bindingSourceDecoders;
+ this.listBoxDecoders.DisplayMember = "FullName";
+ resources.ApplyResources(this.listBoxDecoders, "listBoxDecoders");
+ this.listBoxDecoders.FormattingEnabled = true;
+ this.listBoxDecoders.Name = "listBoxDecoders";
+ this.tableLayoutPanel5.SetRowSpan(this.listBoxDecoders, 2);
+ //
// tabPage4
//
this.tabPage4.BackColor = System.Drawing.SystemColors.Control;
@@ -1436,37 +1468,6 @@ namespace JDP
this.checkBox1.Name = "checkBox1";
this.checkBox1.UseVisualStyleBackColor = true;
//
- // label4
- //
- resources.ApplyResources(this.label4, "label4");
- this.label4.Name = "label4";
- //
- // textBoxDecoderName
- //
- resources.ApplyResources(this.textBoxDecoderName, "textBoxDecoderName");
- this.textBoxDecoderName.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSourceDecoders, "Name", true));
- this.textBoxDecoderName.Name = "textBoxDecoderName";
- this.toolTip1.SetToolTip(this.textBoxDecoderName, resources.GetString("textBoxDecoderName.ToolTip"));
- //
- // bindingSourceDecoders
- //
- this.bindingSourceDecoders.AllowNew = true;
- this.bindingSourceDecoders.DataMember = "Decoders";
- this.bindingSourceDecoders.DataSource = this.cUEConfigBindingSource;
- this.bindingSourceDecoders.Sort = "";
- this.bindingSourceDecoders.CurrentItemChanged += new System.EventHandler(this.bindingSourceDecoders_CurrentItemChanged);
- //
- // listBoxDecoders
- //
- this.listBoxDecoders.BackColor = System.Drawing.SystemColors.Control;
- this.listBoxDecoders.BorderStyle = System.Windows.Forms.BorderStyle.None;
- this.listBoxDecoders.DataSource = this.bindingSourceDecoders;
- this.listBoxDecoders.DisplayMember = "FullName";
- resources.ApplyResources(this.listBoxDecoders, "listBoxDecoders");
- this.listBoxDecoders.FormattingEnabled = true;
- this.listBoxDecoders.Name = "listBoxDecoders";
- this.tableLayoutPanel5.SetRowSpan(this.listBoxDecoders, 2);
- //
// frmSettings
//
this.AcceptButton = this.btnOK;
@@ -1493,6 +1494,7 @@ namespace JDP
((System.ComponentModel.ISupportInitialize)(this.numFixWhenPercent)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.encodersBindingSource)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.cUEConfigBindingSource)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.bindingSourceDecoders)).EndInit();
this.grpAudioFilenames.ResumeLayout(false);
this.grpAudioFilenames.PerformLayout();
this.tabControl1.ResumeLayout(false);
@@ -1543,7 +1545,6 @@ namespace JDP
this.tabPage5.ResumeLayout(false);
this.groupBoxScriptConditions.ResumeLayout(false);
this.tabPage7.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.bindingSourceDecoders)).EndInit();
this.ResumeLayout(false);
}
diff --git a/CUETools/frmSettings.resx b/CUETools/frmSettings.resx
index 74e7aa8..9edc843 100644
--- a/CUETools/frmSettings.resx
+++ b/CUETools/frmSettings.resx
@@ -726,26 +726,41 @@
1
-
- 3, 49
+
+ 2
-
- 104, 18
+
+ Fill
-
- 6
+
+ NoControl
-
- chkEncodeWhenZeroOffset
+
+ 3, 0
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 185, 23
-
+
+ 5
+
+
+ % of verified tracks >=
+
+
+ MiddleRight
+
+
+ label2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
tableLayoutPanel2
-
- 1
+
+ 0
Fill
@@ -828,6 +843,66 @@
4
+
+ Fill
+
+
+ 3, 17
+
+
+ 3
+
+
+ 242, 71
+
+
+ 6
+
+
+ tableLayoutPanel2
+
+
+ System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox5
+
+
+ 0
+
+
+ <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="label2" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="chkEncodeWhenZeroOffset" Row="2" RowSpan="1" Column="0" ColumnSpan="2" /><Control Name="numEncodeWhenPercent" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="labelEncodeWhenConfidence" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="numEncodeWhenConfidence" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /></Controls><Columns Styles="Percent,79.33884,Percent,20.66116" /><Rows Styles="Percent,33.33333,Percent,33.33333,Percent,33.33333" /></TableLayoutSettings>
+
+
+ Fill
+
+
+ 3, 49
+
+
+ Yes
+
+
+ 236, 19
+
+
+ 6
+
+
+ and zero offset
+
+
+ chkEncodeWhenZeroOffset
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tableLayoutPanel2
+
+
+ 1
+
Fill
@@ -1536,6 +1611,39 @@
1
+
+ 755, 17
+
+
+ Top, Left, Right
+
+
+ 96, 78
+
+
+ 287, 21
+
+
+ 30
+
+
+ Name of the encoder
+
+
+ textBoxDecoderName
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBoxExternalDecoder
+
+
+ 1
+
+
+ 755, 17
+
txtSpecialExceptions
@@ -1854,6 +1962,54 @@
1
+
+ textBoxARLogExtension
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBoxARLog
+
+
+ 0
+
+
+ labelLogFileExtension
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBoxARLog
+
+
+ 1
+
+
+ checkBoxARLogVerbose
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBoxARLog
+
+
+ 2
+
+
+ 6, 170
+
+
+ 250, 85
+
+
+ 4
+
+
+ Log file
+
groupBoxARLog
@@ -1866,6 +2022,18 @@
0
+
+ 278, 6
+
+
+ 248, 91
+
+
+ 3
+
+
+ Encode if verified
+
groupBox5
@@ -1878,6 +2046,120 @@
1
+
+ 2
+
+
+ True
+
+
+ Fill
+
+
+ NoControl
+
+
+ 3, 49
+
+
+ Yes
+
+
+ 236, 19
+
+
+ 6
+
+
+ to nearest
+
+
+ checkBoxFixToNearest
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tableLayoutPanel1
+
+
+ 0
+
+
+ Fill
+
+
+ NoControl
+
+
+ 3, 0
+
+
+ 187, 23
+
+
+ 9
+
+
+ % of verified tracks >=
+
+
+ MiddleRight
+
+
+ label3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tableLayoutPanel1
+
+
+ 1
+
+
+ Fill
+
+
+ 3, 17
+
+
+ 3
+
+
+ 242, 71
+
+
+ 10
+
+
+ tableLayoutPanel1
+
+
+ System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBox4
+
+
+ 0
+
+
+ <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="checkBoxFixToNearest" Row="2" RowSpan="1" Column="0" ColumnSpan="2" /><Control Name="label3" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="numFixWhenConfidence" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="labelFixWhenConfidence" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="numFixWhenPercent" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /></Controls><Columns Styles="Percent,79.75207,Percent,20.24793" /><Rows Styles="Percent,33.33333,Percent,33.33333,Percent,33.33333" /></TableLayoutSettings>
+
+
+ 278, 103
+
+
+ 248, 91
+
+
+ 2
+
+
+ Fix offset
+
groupBox4
@@ -1890,6 +2172,42 @@
2
+
+ checkBoxARVerifyUseSourceFolder
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBoxVerify
+
+
+ 0
+
+
+ chkWriteARLogOnVerify
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBoxVerify
+
+
+ 1
+
+
+ 8, 6
+
+
+ 248, 91
+
+
+ 0
+
+
+ Verify
+
groupBoxVerify
@@ -2025,418 +2343,6 @@
4
-
- 2
-
-
- True
-
-
- NoControl
-
-
- 6, 81
-
-
- 34, 13
-
-
- 31
-
-
- Name
-
-
- label4
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBoxExternalDecoder
-
-
- 0
-
-
- Top, Left, Right
-
-
- 755, 17
-
-
- 96, 78
-
-
- 287, 21
-
-
- 30
-
-
- Name of the encoder
-
-
- textBoxDecoderName
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBoxExternalDecoder
-
-
- 1
-
-
- Top, Left, Right
-
-
- 96, 20
-
-
- 287, 21
-
-
- 21
-
-
- textBoxDecoderPath
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBoxExternalDecoder
-
-
- 2
-
-
- True
-
-
- NoControl
-
-
- 6, 23
-
-
- 29, 13
-
-
- 20
-
-
- Path
-
-
- labelDecoderPath
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBoxExternalDecoder
-
-
- 3
-
-
- True
-
-
- NoControl
-
-
- 6, 52
-
-
- 62, 13
-
-
- 22
-
-
- Parameters
-
-
- labelDecoderParameters
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBoxExternalDecoder
-
-
- 4
-
-
- Top, Left, Right
-
-
- 96, 49
-
-
- 287, 21
-
-
- 23
-
-
- textBoxDecoderParameters
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBoxExternalDecoder
-
-
- 5
-
-
- Fill
-
-
- 132, 44
-
-
- 394, 238
-
-
- 27
-
-
- External decoder options
-
-
- groupBoxExternalDecoder
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tableLayoutPanel5
-
-
- 0
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6
- JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAACaUlEQVQ4T6WT+0tTYRjH/Vv0hyhBohsh
- YRQU5rzMnbU2t3k7y/S4xSKWpuwM0wxqGLrwh3CW2lUrf8k0sVFeMnJ2HVoeKy/t1Eat6Tm7pnzbJm0u
- RxC98HnhPDyf78t5znmTAPwXGwoLGk3KPFWp/0CVM7MqkptRlXDvSSUzRcr1tlJpyp/9cQ+Lag3xiaLY
- 76Ym+EcsCLy1IjAxCv5+Nxa0ZXhdSLAvlEJivRMnz1VQ/PLdbqzOvkNw8B6CXc0Imi/g5+02rIwPwlGr
- hVWezT+XZkZDItu8Wp0cku3czS6sMjYEL5+Du9mApaYa+C8ZEGih4Teegv/BLSweJzF+5IB9TLIvORoQ
- kmlnvR4rtsnIiT4TDdd5HbwN6ji40yT8vdfwKi8Dw+IMOhrwkTrGeHqvI9hjhttYhW9F4oQsV5Hgm+rg
- MFTjMZHORAOYCpU38LAXQZMB7rPaUCnxcshy4KIKsWRuhSVvlzdUWguYIYu8vp4O+Bu18J4pjzQnWuEA
- Z5kCS22tGBJuiwVMlyoYl7EOvmYa3EllpDEh8jy462uxUKvDoCAt9gq2YinNSATw9nTCrZLAVSbaILPS
- bLAFIni6rmBUuAMDWVtiQ3xTJE5+WULYFytL4LnTERmYUyFcE2W5YCUhWSIE39mOqWJxWLb3CTbHPmOY
- yYIcYkJ2iJ87qoDnRgd+NNJwkHJ8UcrgatCDv9qOaWU++rNS+ZAc/yP95pn0IPH08H7WKtqDrzU6uFou
- RvhcfQJPcraHZXa9HCYuIMyIeG/KsDBdbyF2M4/yd3JDgq3cQG4a05+dqu/L3PT3y/TvIOkXHdLOuWlI
- 1ksAAAAASUVORK5CYII=
-
-
-
- NoControl
-
-
- 42, 7
-
-
- 25, 23
-
-
- 30
-
-
- buttonDecoderDelete
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- panel2
-
-
- 0
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6
- JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAChUlEQVQ4T6WT/UtTURzG/Vv0lwIhKTEL
- BTWlBAtlZbNNVHSaLudsis52N5fOuc0XMp0bvlTUhm6jkW7TOR2+YCZOLV2kXocSbRRBUBv++nTPhk5N
- guiB58D9fs/nufece04MgP/yHwWNqy6u3VlLtToEdPN4VVDypiLY8LqUFpmLKcEIN+70/BMPGpeIpZys
- Dbxa68VKYAHe7+tY+7aMSZ8VMmc1Kg3sAO/FbdZx5hQsDLl2rdj/tYuZLw4Y6AE839bCumfA4tdZqOfF
- KBrODXEGco5CwoN6ShTLwP6JHRN2f25haKsHT1fb0eVphdarQZ9Xja6NFkzsW0E5+cjX3fDn9WbGHgUw
- sLR/SYFPPzaYN/ahd1MN1TsZ04pIsSqGZIEP6VIN7HsW3B3OQs6TNCnTigS02Ktph8/CfKoRHStytC1L
- IJ4RhGGiKgsHDdPFEE1xof+gQc9iM653pdBMKxIgHas8cH92oP+jhoGbwtBZEk4WQDpXCZN3CBma5AOm
- FAlosvIOxn2jUK9TkHvqw5PPEgmg3BUweweR2p4YDai3lNA6jxraTRWa3vIhnCsFz3wnDBERkPihk4N+
- jwKd7ke4okiILkE4Wii9b2bB5jNBPFeGWndReM2HIrDAzkbdBBe2HSOudScj8XF8dBP5xoLY8pf5fspZ
- hTF65GjDCFhjJyYwB+PbBjww3SOwP0F2PvobiUue5bEKB2+GGm1lsDMhOo8S1HQ5JFNl0K20wcbAfBMb
- ifL4EAOfPEiHZuuzWSxtViBXn47ueQrG91oY17VQuRuR0ZlE4MBxmPhEAPGtnvS47O5UKrPjKp2mSgqm
- KC8GL7deoC/J46kE2bm/X6Z/N2J+A0FGyx8pOKmLAAAAAElFTkSuQmCC
-
-
-
- NoControl
-
-
- 9, 7
-
-
- 25, 23
-
-
- 29
-
-
- buttonDecoderAdd
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- panel2
-
-
- 1
-
-
- Top, Right
-
-
- 316, 7
-
-
- 67, 21
-
-
- 28
-
-
- False
-
-
- comboBoxDecoderExtension
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- panel2
-
-
- 2
-
-
- Top, Right
-
-
- True
-
-
- MiddleRight
-
-
- NoControl
-
-
- 208, 10
-
-
- 100, 16
-
-
- 100, 16
-
-
- 19
-
-
- Extension
-
-
- False
-
-
- labelDecoderExtension
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- panel2
-
-
- 3
-
-
- Fill
-
-
- 132, 3
-
-
- 394, 35
-
-
- 28
-
-
- panel2
-
-
- System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tableLayoutPanel5
-
-
- 1
-
-
- Fill
-
-
- 3, 3
-
-
- 123, 279
-
-
- 29
-
-
- listBoxDecoders
-
-
- System.Windows.Forms.ListBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tableLayoutPanel5
-
-
- 2
-
-
- Fill
-
-
- 3, 3
-
-
- 2
-
-
- 529, 285
-
-
- 29
-
tableLayoutPanel5
@@ -3310,66 +3216,6 @@
5
-
- textBoxARLogExtension
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBoxARLog
-
-
- 0
-
-
- labelLogFileExtension
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBoxARLog
-
-
- 1
-
-
- checkBoxARLogVerbose
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBoxARLog
-
-
- 2
-
-
- 6, 170
-
-
- 250, 85
-
-
- 4
-
-
- Log file
-
-
- groupBoxARLog
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage2
-
-
- 0
-
%F.accurip
@@ -3475,336 +3321,6 @@
2
-
- tableLayoutPanel2
-
-
- System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 0
-
-
- <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="label2" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="chkEncodeWhenZeroOffset" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="numEncodeWhenPercent" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="labelEncodeWhenConfidence" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="numEncodeWhenConfidence" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /></Controls><Columns Styles="Percent,79.33884,Percent,20.66116" /><Rows Styles="Percent,33.33333,Percent,33.33333,Percent,33.33333" /></TableLayoutSettings>
-
-
- 278, 6
-
-
- 248, 91
-
-
- 3
-
-
- Encode if verified
-
-
- groupBox5
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage2
-
-
- 1
-
-
- 2
-
-
- label2
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tableLayoutPanel2
-
-
- 0
-
-
- Fill
-
-
- 3, 17
-
-
- 3
-
-
- 242, 71
-
-
- 6
-
-
- tableLayoutPanel2
-
-
- System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox5
-
-
- 0
-
-
- <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="label2" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="chkEncodeWhenZeroOffset" Row="2" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="numEncodeWhenPercent" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="labelEncodeWhenConfidence" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="numEncodeWhenConfidence" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /></Controls><Columns Styles="Percent,79.33884,Percent,20.66116" /><Rows Styles="Percent,33.33333,Percent,33.33333,Percent,33.33333" /></TableLayoutSettings>
-
-
- Fill
-
-
- NoControl
-
-
- 3, 0
-
-
- 185, 23
-
-
- 5
-
-
- % of verified tracks >=
-
-
- MiddleRight
-
-
- label2
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tableLayoutPanel2
-
-
- 0
-
-
- tableLayoutPanel1
-
-
- System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 0
-
-
- <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="checkBoxFixToNearest" Row="2" RowSpan="1" Column="0" ColumnSpan="2" /><Control Name="label3" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="numFixWhenConfidence" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="labelFixWhenConfidence" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="numFixWhenPercent" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /></Controls><Columns Styles="Percent,79.75207,Percent,20.24793" /><Rows Styles="Percent,33.33333,Percent,33.33333,Percent,33.33333" /></TableLayoutSettings>
-
-
- 278, 103
-
-
- 248, 91
-
-
- 2
-
-
- Fix offset
-
-
- groupBox4
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage2
-
-
- 2
-
-
- 2
-
-
- checkBoxFixToNearest
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tableLayoutPanel1
-
-
- 0
-
-
- label3
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tableLayoutPanel1
-
-
- 1
-
-
- Fill
-
-
- 3, 17
-
-
- 3
-
-
- 242, 71
-
-
- 10
-
-
- tableLayoutPanel1
-
-
- System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBox4
-
-
- 0
-
-
- <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="checkBoxFixToNearest" Row="2" RowSpan="1" Column="0" ColumnSpan="2" /><Control Name="label3" Row="0" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="numFixWhenConfidence" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="labelFixWhenConfidence" Row="1" RowSpan="1" Column="0" ColumnSpan="1" /><Control Name="numFixWhenPercent" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /></Controls><Columns Styles="Percent,79.75207,Percent,20.24793" /><Rows Styles="Percent,33.33333,Percent,33.33333,Percent,33.33333" /></TableLayoutSettings>
-
-
- True
-
-
- Fill
-
-
- NoControl
-
-
- 3, 49
-
-
- Yes
-
-
- 236, 19
-
-
- 6
-
-
- to nearest
-
-
- checkBoxFixToNearest
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tableLayoutPanel1
-
-
- 0
-
-
- Fill
-
-
- NoControl
-
-
- 3, 0
-
-
- 187, 23
-
-
- 9
-
-
- % of verified tracks >=
-
-
- MiddleRight
-
-
- label3
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tableLayoutPanel1
-
-
- 1
-
-
- checkBoxARVerifyUseSourceFolder
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBoxVerify
-
-
- 0
-
-
- chkWriteARLogOnVerify
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- groupBoxVerify
-
-
- 1
-
-
- 8, 6
-
-
- 248, 91
-
-
- 0
-
-
- Verify
-
-
- groupBoxVerify
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- tabPage2
-
-
- 3
-
True
@@ -4964,6 +4480,547 @@
2
+
+ 2
+
+
+ groupBoxExternalDecoder
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tableLayoutPanel5
+
+
+ 0
+
+
+ panel2
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tableLayoutPanel5
+
+
+ 1
+
+
+ listBoxDecoders
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tableLayoutPanel5
+
+
+ 2
+
+
+ Fill
+
+
+ 3, 3
+
+
+ 2
+
+
+ 529, 285
+
+
+ 29
+
+
+ tableLayoutPanel5
+
+
+ System.Windows.Forms.TableLayoutPanel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tabPage11
+
+
+ 0
+
+
+ <?xml version="1.0" encoding="utf-16"?><TableLayoutSettings><Controls><Control Name="groupBoxExternalDecoder" Row="1" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="panel2" Row="0" RowSpan="1" Column="1" ColumnSpan="1" /><Control Name="listBoxDecoders" Row="0" RowSpan="2" Column="0" ColumnSpan="1" /></Controls><Columns Styles="Percent,24.38563,Percent,75.61436" /><Rows Styles="Percent,14.73684,Percent,85.26316" /></TableLayoutSettings>
+
+
+ label4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBoxExternalDecoder
+
+
+ 0
+
+
+ textBoxDecoderPath
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBoxExternalDecoder
+
+
+ 2
+
+
+ labelDecoderPath
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBoxExternalDecoder
+
+
+ 3
+
+
+ labelDecoderParameters
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBoxExternalDecoder
+
+
+ 4
+
+
+ textBoxDecoderParameters
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBoxExternalDecoder
+
+
+ 5
+
+
+ Fill
+
+
+ 132, 44
+
+
+ 394, 238
+
+
+ 27
+
+
+ External decoder options
+
+
+ groupBoxExternalDecoder
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tableLayoutPanel5
+
+
+ 0
+
+
+ True
+
+
+ NoControl
+
+
+ 6, 81
+
+
+ 34, 13
+
+
+ 31
+
+
+ Name
+
+
+ label4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBoxExternalDecoder
+
+
+ 0
+
+
+ Top, Left, Right
+
+
+ 96, 20
+
+
+ 287, 21
+
+
+ 21
+
+
+ textBoxDecoderPath
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBoxExternalDecoder
+
+
+ 2
+
+
+ True
+
+
+ NoControl
+
+
+ 6, 23
+
+
+ 29, 13
+
+
+ 20
+
+
+ Path
+
+
+ labelDecoderPath
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBoxExternalDecoder
+
+
+ 3
+
+
+ True
+
+
+ NoControl
+
+
+ 6, 52
+
+
+ 62, 13
+
+
+ 22
+
+
+ Parameters
+
+
+ labelDecoderParameters
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBoxExternalDecoder
+
+
+ 4
+
+
+ Top, Left, Right
+
+
+ 96, 49
+
+
+ 287, 21
+
+
+ 23
+
+
+ textBoxDecoderParameters
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ groupBoxExternalDecoder
+
+
+ 5
+
+
+ buttonDecoderDelete
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ panel2
+
+
+ 0
+
+
+ buttonDecoderAdd
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ panel2
+
+
+ 1
+
+
+ comboBoxDecoderExtension
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ panel2
+
+
+ 2
+
+
+ labelDecoderExtension
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ panel2
+
+
+ 3
+
+
+ Fill
+
+
+ 132, 3
+
+
+ 394, 35
+
+
+ 28
+
+
+ panel2
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tableLayoutPanel5
+
+
+ 1
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6
+ JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAACaUlEQVQ4T6WT+0tTYRjH/Vv0hyhBohsh
+ YRQU5rzMnbU2t3k7y/S4xSKWpuwM0wxqGLrwh3CW2lUrf8k0sVFeMnJ2HVoeKy/t1Eat6Tm7pnzbJm0u
+ RxC98HnhPDyf78t5znmTAPwXGwoLGk3KPFWp/0CVM7MqkptRlXDvSSUzRcr1tlJpyp/9cQ+Lag3xiaLY
+ 76Ym+EcsCLy1IjAxCv5+Nxa0ZXhdSLAvlEJivRMnz1VQ/PLdbqzOvkNw8B6CXc0Imi/g5+02rIwPwlGr
+ hVWezT+XZkZDItu8Wp0cku3czS6sMjYEL5+Du9mApaYa+C8ZEGih4Teegv/BLSweJzF+5IB9TLIvORoQ
+ kmlnvR4rtsnIiT4TDdd5HbwN6ji40yT8vdfwKi8Dw+IMOhrwkTrGeHqvI9hjhttYhW9F4oQsV5Hgm+rg
+ MFTjMZHORAOYCpU38LAXQZMB7rPaUCnxcshy4KIKsWRuhSVvlzdUWguYIYu8vp4O+Bu18J4pjzQnWuEA
+ Z5kCS22tGBJuiwVMlyoYl7EOvmYa3EllpDEh8jy462uxUKvDoCAt9gq2YinNSATw9nTCrZLAVSbaILPS
+ bLAFIni6rmBUuAMDWVtiQ3xTJE5+WULYFytL4LnTERmYUyFcE2W5YCUhWSIE39mOqWJxWLb3CTbHPmOY
+ yYIcYkJ2iJ87qoDnRgd+NNJwkHJ8UcrgatCDv9qOaWU++rNS+ZAc/yP95pn0IPH08H7WKtqDrzU6uFou
+ RvhcfQJPcraHZXa9HCYuIMyIeG/KsDBdbyF2M4/yd3JDgq3cQG4a05+dqu/L3PT3y/TvIOkXHdLOuWlI
+ 1ksAAAAASUVORK5CYII=
+
+
+
+ NoControl
+
+
+ 42, 7
+
+
+ 25, 23
+
+
+ 30
+
+
+ buttonDecoderDelete
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ panel2
+
+
+ 0
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6
+ JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAChUlEQVQ4T6WT/UtTURzG/Vv0lwIhKTEL
+ BTWlBAtlZbNNVHSaLudsis52N5fOuc0XMp0bvlTUhm6jkW7TOR2+YCZOLV2kXocSbRRBUBv++nTPhk5N
+ guiB58D9fs/nufece04MgP/yHwWNqy6u3VlLtToEdPN4VVDypiLY8LqUFpmLKcEIN+70/BMPGpeIpZys
+ Dbxa68VKYAHe7+tY+7aMSZ8VMmc1Kg3sAO/FbdZx5hQsDLl2rdj/tYuZLw4Y6AE839bCumfA4tdZqOfF
+ KBrODXEGco5CwoN6ShTLwP6JHRN2f25haKsHT1fb0eVphdarQZ9Xja6NFkzsW0E5+cjX3fDn9WbGHgUw
+ sLR/SYFPPzaYN/ahd1MN1TsZ04pIsSqGZIEP6VIN7HsW3B3OQs6TNCnTigS02Ktph8/CfKoRHStytC1L
+ IJ4RhGGiKgsHDdPFEE1xof+gQc9iM653pdBMKxIgHas8cH92oP+jhoGbwtBZEk4WQDpXCZN3CBma5AOm
+ FAlosvIOxn2jUK9TkHvqw5PPEgmg3BUweweR2p4YDai3lNA6jxraTRWa3vIhnCsFz3wnDBERkPihk4N+
+ jwKd7ke4okiILkE4Wii9b2bB5jNBPFeGWndReM2HIrDAzkbdBBe2HSOudScj8XF8dBP5xoLY8pf5fspZ
+ hTF65GjDCFhjJyYwB+PbBjww3SOwP0F2PvobiUue5bEKB2+GGm1lsDMhOo8S1HQ5JFNl0K20wcbAfBMb
+ ifL4EAOfPEiHZuuzWSxtViBXn47ueQrG91oY17VQuRuR0ZlE4MBxmPhEAPGtnvS47O5UKrPjKp2mSgqm
+ KC8GL7deoC/J46kE2bm/X6Z/N2J+A0FGyx8pOKmLAAAAAElFTkSuQmCC
+
+
+
+ NoControl
+
+
+ 9, 7
+
+
+ 25, 23
+
+
+ 29
+
+
+ buttonDecoderAdd
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ panel2
+
+
+ 1
+
+
+ Top, Right
+
+
+ 316, 7
+
+
+ 67, 21
+
+
+ 28
+
+
+ False
+
+
+ comboBoxDecoderExtension
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ panel2
+
+
+ 2
+
+
+ Top, Right
+
+
+ True
+
+
+ MiddleRight
+
+
+ NoControl
+
+
+ 208, 10
+
+
+ 100, 16
+
+
+ 100, 16
+
+
+ 19
+
+
+ Extension
+
+
+ False
+
+
+ labelDecoderExtension
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ panel2
+
+
+ 3
+
+
+ Fill
+
+
+ 3, 3
+
+
+ 123, 279
+
+
+ 29
+
+
+ listBoxDecoders
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tableLayoutPanel5
+
+
+ 2
+
label1
@@ -5405,6 +5462,12 @@
System.Windows.Forms.BindingSource, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ bindingSourceDecoders
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
columnHeader1
@@ -5429,12 +5492,6 @@
System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- bindingSourceDecoders
-
-
- System.Windows.Forms.BindingSource, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
frmSettings