update release notes; trivial changes

This commit is contained in:
Mitchell Livingston 2008-11-06 03:45:56 +00:00
parent 4f5df7fdfa
commit bd3f3568e2
3 changed files with 4 additions and 4 deletions

View File

@ -52,10 +52,9 @@ static void resolveHSV(float *color1, float *color2);
{
CGFunctionRelease(gradientFunction);
CTGradientElement *elementToRemove = elementList;
while(elementList != nil)
{
elementToRemove = elementList;
CTGradientElement *elementToRemove = elementList;
elementList = elementList->nextElement;
free(elementToRemove);
}

View File

@ -552,7 +552,7 @@ void completenessChangeCallback(tr_torrent * torrent, tr_completeness status, vo
: [fileManager fileSystemAttributesAtPath: downloadFolder];
uint64_t remainingSpace = [[systemAttributes objectForKey: NSFileSystemFreeSize] unsignedLongLongValue];
//if the size left is less then remaining space, then there is enough space regardless of preallocation
//if the remaining space is greater than the size left, then there is enough space regardless of preallocation
if (remainingSpace < [self sizeLeft] && remainingSpace < tr_torrentGetBytesLeftToAllocate(fHandle))
{
NSAlert * alert = [[NSAlert alloc] init];

View File

@ -20,7 +20,8 @@
<ul>
<li>Tracker communication uses fewer resources</li>
<li>More accurate bandwidth management</li>
<li>Bandwidth displays now include BitTorrent protocol overhead</li>
<li>Bandwidth limits now include BitTorrent protocol overhead</li>
<li>Files are preallocated as soon as any data is received for that file</li>
<li>Stability, security, and performance improvements to the RPC/Web UI server</li>
<li>Support compression when serving Web UI and RPC responses</li>
<li>Simplify the RPC whitelist</li>