diff --git a/iNapi/Classes/AppDelegate/INPAppDelegate.m b/iNapi/Classes/AppDelegate/INPAppDelegate.m index f428320..cf34fa8 100644 --- a/iNapi/Classes/AppDelegate/INPAppDelegate.m +++ b/iNapi/Classes/AppDelegate/INPAppDelegate.m @@ -120,8 +120,10 @@ NSURL * subtitlesURL = [self.urlCreator iNapiURLForMovie:path language:[INPPreferencesWindowController subtitleLanguage]]; [self.subtitleDownloader downloadSubtitlesAtURL:subtitlesURL forMovieAtURL:movieURL completionHandler:^(NSURL *downloadedSubtitlesURL, NSError *error) { INDownloadResult * result = [[INDownloadResult alloc] initWithDownloadedSubtitlesURL:downloadedSubtitlesURL error:error]; - [self.downloadResultsArrayController addObject:result]; - self.downloadProgress += 1.0 / array.count; + dispatch_async(dispatch_get_main_queue(), ^{ + [self.downloadResultsArrayController insertObject:result atArrangedObjectIndex:0]; + self.downloadProgress += 1.0 / array.count; + }); }]; } diff --git a/iNapi/Classes/AppDelegate/MainMenu.xib b/iNapi/Classes/AppDelegate/MainMenu.xib index 964a521..5213b16 100644 --- a/iNapi/Classes/AppDelegate/MainMenu.xib +++ b/iNapi/Classes/AppDelegate/MainMenu.xib @@ -2,13 +2,13 @@ 1080 - 12A269 - 2549 - 1187 - 624.00 + 12D78 + 3084 + 1187.37 + 626.00 com.apple.InterfaceBuilder.CocoaPlugin - 2549 + 3084 NSArrayController @@ -1527,7 +1527,6 @@ {{298, 7}, {82, 18}} - _NS:687 YES @@ -1605,6 +1604,14 @@ 495 + + + hide: + + + + 566 + performMiniaturize: @@ -3618,7 +3625,7 @@ - 565 + 566 diff --git a/iNapi/Classes/Helpers/INSubtitleDownloader.m b/iNapi/Classes/Helpers/INSubtitleDownloader.m index c3ccf62..5fa870b 100644 --- a/iNapi/Classes/Helpers/INSubtitleDownloader.m +++ b/iNapi/Classes/Helpers/INSubtitleDownloader.m @@ -54,23 +54,19 @@ // download subtitles NSError * error; - NSString * subtitles = [NSString stringWithContentsOfURL:subtitlesURL - encoding:NSWindowsCP1250StringEncoding + NSString * subtitles = [NSString stringWithContentsOfURL:subtitlesURL + encoding:NSWindowsCP1250StringEncoding error:&error]; if (error) { - dispatch_async(dispatch_get_main_queue(), ^{ - completionHandler(nil, error); - }); + completionHandler(nil, error); return; } - // check if subtitles were found, if not pass error + // check if subtitles were found, if not pass error if ([subtitles isEqualToString:@"NPc0"]) { error = [NSError errorWithDomain:iNapiErrorDomain code:iNapiSubtitlesNotFound userInfo:nil]; - dispatch_async(dispatch_get_main_queue(), ^{ - completionHandler(nil, error); - }); + completionHandler(nil, error); return; } @@ -82,9 +78,7 @@ if (archivePreviousSubtitles && [self.fileManager fileExistsAtPath:subtitlesSaveURL.path] == YES) { NSURL * archiverSubtitlesSaveURL = [self archivedURLWithURL:subtitlesSaveURL]; if ([self.fileManager moveItemAtURL:subtitlesSaveURL toURL:archiverSubtitlesSaveURL error:&error] == NO) { - dispatch_async(dispatch_get_main_queue(), ^{ - completionHandler(nil, error); - }); + completionHandler(nil, error); return; } } @@ -92,15 +86,11 @@ // save subtitles NSStringEncoding encoding = self.convertToUTF8 == YES ? NSUTF8StringEncoding : NSWindowsCP1250StringEncoding; if ([subtitles writeToURL:subtitlesSaveURL atomically:YES encoding:encoding error:&error] == NO) { - dispatch_async(dispatch_get_main_queue(), ^{ - completionHandler(nil, error); - }); + completionHandler(nil, error); return; } - dispatch_async(dispatch_get_main_queue(), ^{ - completionHandler(subtitlesSaveURL, nil); - }); + completionHandler(subtitlesSaveURL, nil); }); }