1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-02 04:22:44 +00:00

update news file and adjust status button size

This commit is contained in:
Mitchell Livingston 2007-12-09 22:20:48 +00:00
parent c2e314743f
commit 1cb7ecce9c
2 changed files with 7 additions and 4 deletions

5
NEWS
View file

@ -15,10 +15,13 @@ NEWS file for Transmission <http://transmission.m0k.org/>
+ 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

View file

@ -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];
}
}