mirror of
https://github.com/transmission/transmission
synced 2025-03-02 17:55:22 +00:00
update NEWS; trivial changes
This commit is contained in:
parent
0f6499b3c7
commit
afb9d97f55
12 changed files with 23 additions and 16 deletions
1
NEWS
1
NEWS
|
@ -4,6 +4,7 @@ NEWS file for Transmission <http://www.transmissionbt.com/>
|
|||
<http://trac.transmissionbt.com/query?milestone=1.40&group=component&groupdesc=1&order=severity>
|
||||
- All Platforms
|
||||
+ Tracker communication uses fewer resources
|
||||
+ Bandwidth displays now include overhead data transfer
|
||||
+ More accurate bandwidth management
|
||||
+ Stability, security, and performance improvements to the RPC and Web UI server
|
||||
+ Lazy bitfields (always on)
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
}
|
||||
|
||||
- (id) initWithFolderName: (NSString *) name path: (NSString *) path;
|
||||
- (id) initWithFileName: (NSString *) name path: (NSString *) path size: (uint64_t) size index: (int) index;
|
||||
- (id) initWithFileName: (NSString *) name path: (NSString *) path size: (uint64_t) size index: (NSUInteger) index;
|
||||
|
||||
- (void) insertChild: (FileListNode *) child;
|
||||
- (void) insertIndex: (NSUInteger) index withSize: (uint64_t) size;
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
return self;
|
||||
}
|
||||
|
||||
- (id) initWithFileName: (NSString *) name path: (NSString *) path size: (uint64_t) size index: (int) index
|
||||
- (id) initWithFileName: (NSString *) name path: (NSString *) path size: (uint64_t) size index: (NSUInteger) index
|
||||
{
|
||||
if ((self = [self initWithFolder: NO name: name path: path]))
|
||||
{
|
||||
|
|
|
@ -193,9 +193,8 @@
|
|||
|
||||
if (![(FileListNode *)[self objectValue] isFolder])
|
||||
{
|
||||
result = bounds;
|
||||
result.origin.x += PADDING_HORIZONAL + IMAGE_ICON_SIZE + PADDING_BETWEEN_IMAGE_AND_TITLE;
|
||||
result.origin.y += result.size.height - PADDING_BELOW_STATUS_FILE - statusSize.height;
|
||||
result.origin.x = bounds.origin.x + PADDING_HORIZONAL + IMAGE_ICON_SIZE + PADDING_BETWEEN_IMAGE_AND_TITLE;
|
||||
result.origin.y = bounds.origin.y + result.size.height - PADDING_BELOW_STATUS_FILE - statusSize.height;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
for (NSInteger i = 0; i < [self segmentCount]; i++)
|
||||
{
|
||||
[self setLabel: @"" forSegment: i];
|
||||
[self setWidth: 9.0 forSegment: i]; //9 is minimum size to get proper look
|
||||
[self setWidth: 9.0f forSegment: i]; //9 is minimum size to get proper look
|
||||
}
|
||||
|
||||
[self setImage: [NSImage imageNamed: @"PriorityControlLow.png"] forSegment: 0];
|
||||
|
@ -52,12 +52,12 @@
|
|||
return self;
|
||||
}
|
||||
|
||||
- (void) setSelected: (BOOL) flag forSegment: (int) segment
|
||||
- (void) setSelected: (BOOL) flag forSegment: (NSInteger) segment
|
||||
{
|
||||
[super setSelected: flag forSegment: segment];
|
||||
|
||||
//only for when clicking manually
|
||||
int priority;
|
||||
NSInteger priority;
|
||||
switch (segment)
|
||||
{
|
||||
case 0:
|
||||
|
@ -137,8 +137,8 @@
|
|||
}
|
||||
|
||||
NSSize imageSize = [image size];
|
||||
[image compositeToPoint: NSMakePoint(cellFrame.origin.x + (cellFrame.size.width - imageSize.width) * 0.5,
|
||||
cellFrame.origin.y + (cellFrame.size.height + imageSize.height) * 0.5) operation: NSCompositeSourceOver];
|
||||
[image compositeToPoint: NSMakePoint(cellFrame.origin.x + (cellFrame.size.width - imageSize.width) * 0.5f,
|
||||
cellFrame.origin.y + (cellFrame.size.height + imageSize.height) * 0.5f) operation: NSCompositeSourceOver];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -23,12 +23,12 @@
|
|||
*****************************************************************************/
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
#import "Torrent.h"
|
||||
#import "FileOutlineController.h"
|
||||
#import "PiecesView.h"
|
||||
#import <transmission.h>
|
||||
|
||||
@class Torrent;
|
||||
@class TrackerTableView;
|
||||
@class FileOutlineController;
|
||||
@class PiecesView;
|
||||
|
||||
@interface InfoWindowController : NSWindowController
|
||||
{
|
||||
|
|
|
@ -23,10 +23,13 @@
|
|||
*****************************************************************************/
|
||||
|
||||
#import "InfoWindowController.h"
|
||||
#import "Torrent.h"
|
||||
#import "InfoTabButtonCell.h"
|
||||
#import "FileOutlineView.h"
|
||||
#import "FileOutlineController.h"
|
||||
#import "FileListNode.h"
|
||||
#import "TrackerTableView.h"
|
||||
#import "PiecesView.h"
|
||||
#import "QuickLookController.h"
|
||||
#import "NSApplicationAdditions.h"
|
||||
#import "NSStringAdditions.h"
|
||||
|
|
|
@ -23,7 +23,8 @@
|
|||
*****************************************************************************/
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
#import "Torrent.h"
|
||||
|
||||
@class Torrent;
|
||||
|
||||
@interface PiecesView : NSImageView
|
||||
{
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
*****************************************************************************/
|
||||
|
||||
#import "PiecesView.h"
|
||||
#import "Torrent.h"
|
||||
#import "InfoWindowController.h"
|
||||
#import "CTGradient.h"
|
||||
#import "utils.h"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
#import <transmission.h>
|
||||
#import "PortChecker.h"
|
||||
|
||||
@class PortChecker;
|
||||
|
||||
@interface PrefsController : NSWindowController
|
||||
{
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
#import "PrefsController.h"
|
||||
#import "BlocklistDownloaderViewController.h"
|
||||
#import "BlocklistScheduler.h"
|
||||
#import "PortChecker.h"
|
||||
#import "NSApplicationAdditions.h"
|
||||
#import "NSStringAdditions.h"
|
||||
#import "UKKQueue.h"
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
#import <transmission.h>
|
||||
#import <Controller.h>
|
||||
#import "Controller.h"
|
||||
|
||||
@class TorrentCell;
|
||||
|
||||
|
|
Loading…
Reference in a new issue