Changeset 9680
- Timestamp:
- Dec 7, 2009, 3:53:52 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NEWS
r9673 r9680 2 2 [http://trac.transmissionbt.com/query?milestone=1.80&group=component&groupdesc=1&order=severity All tickets closed by this release] 3 3 ==== All Platforms ==== 4 * Added support for Magnet links4 * Magnet link support 5 5 * If a torrent has multiple tracker tiers, announce to them in parallel 6 6 * Add optional "incomplete directory" where partial downloads are stored -
trunk/macosx/MessageWindowController.m
r9649 r9680 357 357 - (void) clearLog: (id) sender 358 358 { 359 [fLock lock]; 360 359 361 [fMessages removeAllObjects]; 360 362 [fDisplayedMessages removeAllObjects]; 361 363 [fMessageTable reloadData]; 364 365 [fLock unlock]; 362 366 } 363 367 -
trunk/macosx/Torrent.m
r9667 r9680 580 580 - (NSString *) name 581 581 { 582 return [NSString stringWithUTF8String: fInfo->name];582 return fInfo->name != NULL ? [NSString stringWithUTF8String: fInfo->name] : @""; 583 583 } 584 584 … … 1754 1754 [self createFileList]; 1755 1755 1756 #warning only call when torrent is selected1757 1756 [[NSNotificationCenter defaultCenter] postNotificationName: @"ResetInspector" object: self]; 1758 1757 }
Note: See TracChangeset
for help on using the changeset viewer.