0.04.1
parent
1fee91dfc3
commit
da4fed8bc8
|
@ -1,3 +1,7 @@
|
|||
0.04.b
|
||||
----
|
||||
Fixed crash when dragging/dropping files to the playlist.
|
||||
|
||||
0.04
|
||||
----
|
||||
Fixed id3v1 tag issue when taggers use spaces to fill empty bytes.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<html>
|
||||
<body>
|
||||
This release of Cog is dedicated to Bowser, lord of the Koopas. Be persistent, and you too can have buddha nature.
|
||||
This release of Cog is dedicated to all those hungry bug-finders out there. You rock.
|
||||
</body>
|
||||
</html>
|
||||
|
|
Binary file not shown.
|
@ -93,7 +93,7 @@
|
|||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>0.04</string>
|
||||
<string>0.04.1</string>
|
||||
<key>NSAppleScriptEnabled</key>
|
||||
<string>YES</string>
|
||||
<key>NSMainNibFile</key>
|
||||
|
|
|
@ -103,7 +103,6 @@
|
|||
if (sort == YES)
|
||||
{
|
||||
sortedFiles = [paths sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)];
|
||||
[paths release];
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -182,11 +181,15 @@
|
|||
NSArray *files = [[info draggingPasteboard] propertyListForType:NSFilenamesPboardType];
|
||||
[self insertPaths:files atIndex:row sort:YES];
|
||||
|
||||
[self updateIndexesFromRow:row];
|
||||
DBLog(@"FILES ADDED");
|
||||
|
||||
[self updateIndexesFromRow:row];
|
||||
DBLog(@"UPDATED THINGS");
|
||||
if (shuffle == YES)
|
||||
[self generateShuffleList];
|
||||
|
||||
DBLog(@"ALL DONE");
|
||||
|
||||
return YES;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue