Changeset 7059
- Timestamp:
- Nov 6, 2008, 3:45:56 AM (12 years ago)
- Location:
- trunk/macosx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/CTGradient/CTGradient.m
r5972 r7059 53 53 CGFunctionRelease(gradientFunction); 54 54 55 CTGradientElement *elementToRemove = elementList;56 55 while(elementList != nil) 57 56 { 58 elementToRemove = elementList;57 CTGradientElement *elementToRemove = elementList; 59 58 elementList = elementList->nextElement; 60 59 free(elementToRemove); -
trunk/macosx/Torrent.m
r7053 r7059 553 553 uint64_t remainingSpace = [[systemAttributes objectForKey: NSFileSystemFreeSize] unsignedLongLongValue]; 554 554 555 //if the size left is less then remaining space, then there is enough space regardless of preallocation555 //if the remaining space is greater than the size left, then there is enough space regardless of preallocation 556 556 if (remainingSpace < [self sizeLeft] && remainingSpace < tr_torrentGetBytesLeftToAllocate(fHandle)) 557 557 { -
trunk/macosx/appcast/releasenotes.html
r7048 r7059 21 21 <li>Tracker communication uses fewer resources</li> 22 22 <li>More accurate bandwidth management</li> 23 <li>Bandwidth displays now include BitTorrent protocol overhead</li> 23 <li>Bandwidth limits now include BitTorrent protocol overhead</li> 24 <li>Files are preallocated as soon as any data is received for that file</li> 24 25 <li>Stability, security, and performance improvements to the RPC/Web UI server</li> 25 26 <li>Support compression when serving Web UI and RPC responses</li>
Note: See TracChangeset
for help on using the changeset viewer.