diff --git a/NEWS b/NEWS index b0f2ebcf1..6ca928411 100644 --- a/NEWS +++ b/NEWS @@ -15,10 +15,13 @@ NEWS file for Transmission + Display remaining time for seeding transfers + Sort by total activity + Leopard: Fix bug where text fields would reject localized decimal values - + Fix bug where dragging non-torrent files over the main window would result in excessive memory usage - GTK+: + Statistics window +0.96 (2007/12/yy) +- OS X: + + Fix bug where dragging non-torrent files over the main window could result in excessive memory usage + 0.95 (2007/12/04) - All Platforms: + Fix router errors caused by sending too many tracker requests at once diff --git a/macosx/Controller.m b/macosx/Controller.m index 2ce8451c3..437c6fd2f 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -1447,8 +1447,8 @@ void sleepCallBack(void * controller, io_service_t y, natural_t messageType, voi else tr_getSessionStats(fLib, &stats); - statusString = [NSString stringWithFormat: NSLocalizedString(@"DL: %@ UL: %@", - "status bar -> status label (3 spaces between)"), + statusString = [NSString stringWithFormat: NSLocalizedString(@"DL: %@ UL: %@", + "status bar -> status label (2 spaces between)"), [NSString stringForFileSize: stats.downloadedBytes], [NSString stringForFileSize: stats.uploadedBytes]]; } else @@ -1459,7 +1459,7 @@ void sleepCallBack(void * controller, io_service_t y, natural_t messageType, voi //width ends up being too long NSRect statusFrame = [fStatusButton frame]; - statusFrame.size.width -= 23.0; + statusFrame.size.width -= 25.0; [fStatusButton setFrame: statusFrame]; } }