mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
1) Fixed crash on source files that contain zero length tags
2) Fixed a glitch in filename corrector - it sometimes didn't replace underscores with spaces. 3) Fixed a bug when a broken cue sheet was created if artist, title or genre contained comma character. 3) Added .zip archive support 4) Added support for cue sheets which start with data track (mixed mode or "playstation type" cds)
This commit is contained in:
@@ -263,7 +263,7 @@ namespace APETagsDotNet
|
||||
bool bAPETagRemoved = true;
|
||||
|
||||
bool bFailedToRemove = false;
|
||||
|
||||
|
||||
while (bID3Removed || bAPETagRemoved)
|
||||
{
|
||||
bID3Removed = false;
|
||||
@@ -445,7 +445,8 @@ namespace APETagsDotNet
|
||||
// remove a specific field
|
||||
void RemoveField(string pFieldName)
|
||||
{
|
||||
RemoveField(GetTagFieldIndex(pFieldName));
|
||||
int idx = GetTagFieldIndex(pFieldName);
|
||||
if (idx >= 0) RemoveField(idx);
|
||||
}
|
||||
|
||||
void RemoveField(int nIndex)
|
||||
|
||||
Reference in New Issue
Block a user