Changeset 11028
- Timestamp:
- Jul 21, 2010, 3:59:08 AM (12 years ago)
- Location:
- branches/2.0x
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0x/NEWS
r11017 r11028 1 === Transmission 2.02 (2010/07/18) === 1 === Transmission 2.03 (2010/07/21) === 2 [http://trac.transmissionbt.com/query?milestone=2.03&group=component&groupdesc=1&order=severity All tickets closed by this release] 3 ==== Mac ==== 4 * Fix bug where new transfers could not be added 5 6 === Transmission 2.02 (2010/07/19) === 2 7 [http://trac.transmissionbt.com/query?milestone=2.02&group=component&groupdesc=1&order=severity All tickets closed by this release] 3 8 ==== All Platforms ==== … … 9 14 ==== Mac ==== 10 15 * Use F_NOCACHE to keep "inactive memory" in check 11 === GTK+ ====16 ==== GTK+ ==== 12 17 * Fix crash when opening the Properties dialog on a magnet link without metainfo 13 18 * Fix crash when removing multiple torrents at once -
branches/2.0x/configure.ac
r11018 r11028 4 4 dnl "0" for stable, supported releases 5 5 dnl these should be the only two lines you need to change 6 m4_define([user_agent_prefix],[2.0 2])7 m4_define([peer_id_prefix],[-TR20 20-])6 m4_define([user_agent_prefix],[2.03]) 7 m4_define([peer_id_prefix],[-TR2030-]) 8 8 9 9 AC_INIT([transmission], -
branches/2.0x/macosx/FileNameCell.m
r10981 r11028 212 212 213 213 const CGFloat progress = [torrent fileProgress: node]; 214 NSString * percentString = [NSString percentString: progress longDecimals: YES]; 214 NSString * percentString = progress == 1.0 ? @"100%" 215 : [NSString localizedStringWithFormat: @"%.2f%%", tr_truncd(progress * 100.0, 2)]; 215 216 216 217 NSString * status = [NSString stringWithFormat: NSLocalizedString(@"%@ of %@",
Note: See TracChangeset
for help on using the changeset viewer.