forgotten files & freedb minor issue

This commit is contained in:
chudov
2011-07-10 16:56:57 +00:00
parent f3ca8eeb76
commit e46800cf2f
14 changed files with 5 additions and 5 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 394 B

View File

@@ -1340,7 +1340,7 @@ namespace CUERipper
//catch
//{
//}
uint length = selectedDriveInfo.drive.TOC.Length / 75 - selectedDriveInfo.drive.TOC[1].Start / 75 + 2;
uint length = selectedDriveInfo.drive.TOC.Length / 75 + 2;
try
{
string res = m_freedb.Submit(entry, (int)length, AccurateRipVerify.CalculateCDDBId(selectedDriveInfo.drive.TOC), frm.Data.Category, false);

View File

@@ -1443,7 +1443,7 @@ namespace CUETools.AccurateRip
query.AppendFormat("+{0}", toc.TrackCount);
for (int iTrack = 1; iTrack <= toc.TrackCount; iTrack++)
query.AppendFormat("+{0}", toc[iTrack].Start + 150);
query.AppendFormat("+{0}", toc.Length / 75 - toc[1].Start / 75);
query.AppendFormat("+{0}", toc.Length / 75 + 2);
return query.ToString();
}

View File

@@ -292,8 +292,8 @@
<None Include="Resources\delete.png" />
<None Include="Resources\cdrepair.ico" />
<None Include="Resources\cdrepair.png" />
<None Include="Resources\more\icon\puzzle--arrow.png" />
<None Include="Resources\more\icon\alarm-clock--minus.png" />
<None Include="Resources\puzzle--arrow.png" />
<None Include="Resources\alarm-clock--minus.png" />
<None Include="Resources\puzzle.ico" />
<None Include="Resources\alarm-clock.ico" />
<None Include="Resources\users.ico" />

BIN
CUETools/Resources/AR.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 809 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 848 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 812 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 793 B

BIN
CUETools/Resources/eac.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
CUETools/Resources/eac2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 948 B

BIN
CUETools/Resources/eac3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 798 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 962 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 921 B

View File

@@ -925,7 +925,7 @@ namespace JDP {
true,
true,
checkBoxUseMusicBrainz.Checked ? CTDBPriority.High : CTDBPriority.None,
checkBoxUseFreeDb.Checked ? CTDBPriority.High : CTDBPriority.None,
checkBoxUseFreeDb.Checked ? CTDBPriority.Medium : CTDBPriority.None,
checkBoxUseFreeDb.Checked ? CTDBPriority.Low : CTDBPriority.None);
dlgRes = dlg.ShowDialog(this);
_choiceMaxed = dlg.WindowState == FormWindowState.Maximized;