diff --git a/Changelog b/Changelog index e88f13076..80b529a05 100644 --- a/Changelog +++ b/Changelog @@ -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. diff --git a/Credits.html b/Credits.html index 9947252da..e421ed08c 100644 --- a/Credits.html +++ b/Credits.html @@ -1,5 +1,5 @@ -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. diff --git a/English.lproj/MainMenu.nib/keyedobjects.nib b/English.lproj/MainMenu.nib/keyedobjects.nib index 48e5c3f21..50bc3cdf1 100644 Binary files a/English.lproj/MainMenu.nib/keyedobjects.nib and b/English.lproj/MainMenu.nib/keyedobjects.nib differ diff --git a/Info.plist b/Info.plist index fa13cd478..da7734d91 100644 --- a/Info.plist +++ b/Info.plist @@ -93,7 +93,7 @@ CFBundleSignature ???? CFBundleVersion - 0.04 + 0.04.1 NSAppleScriptEnabled YES NSMainNibFile diff --git a/Playlist/PlaylistController.m b/Playlist/PlaylistController.m index d824ede07..e3037117a 100644 --- a/Playlist/PlaylistController.m +++ b/Playlist/PlaylistController.m @@ -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; }