- Timestamp:
- Jul 29, 2006, 4:58:44 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Transmission.xcodeproj/project.pbxproj
r666 r700 255 255 4DCCBB3C09C3D71100D3CABF /* TorrentCell.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = TorrentCell.m; path = macosx/TorrentCell.m; sourceTree = "<group>"; }; 256 256 4DCCBB3D09C3D71100D3CABF /* TorrentCell.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = TorrentCell.h; path = macosx/TorrentCell.h; sourceTree = "<group>"; }; 257 4DDBB71909E16BAE00284745 /* transmissioncli */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = "compiled.mach-o.executable"; path = transmissioncli; sourceTree = BUILT_PRODUCTS_DIR; };257 4DDBB71909E16BAE00284745 /* transmissioncli */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = transmissioncli; sourceTree = BUILT_PRODUCTS_DIR; }; 258 258 4DDBB71B09E16BF100284745 /* transmissioncli.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; name = transmissioncli.c; path = cli/transmissioncli.c; sourceTree = "<group>"; }; 259 259 4DDFDD20099A5D8E00189D81 /* DownloadBadge.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = DownloadBadge.png; path = macosx/Images/DownloadBadge.png; sourceTree = "<group>"; }; -
trunk/macosx/Controller.m
r698 r700 48 48 #define TORRENT_TABLE_VIEW_DATA_TYPE @"TorrentTableViewDataType" 49 49 50 #define ROW_HEIGHT_REGULAR 65.0 51 #define ROW_HEIGHT_SMALL 40.0 52 #define WINDOW_REGULAR_WIDTH 468.0 50 #define ROW_HEIGHT_REGULAR 65.0 51 #define ROW_HEIGHT_SMALL 40.0 52 #define WINDOW_REGULAR_WIDTH 468.0 53 54 #define SEARCH_FILTER_MAX_WIDTH 100.0 53 55 54 56 #define WEBSITE_URL @"http://transmission.m0k.org/" … … 651 653 - (void) removeSheetDidEnd: (NSWindow *) sheet returnCode: (int) returnCode contextInfo: (NSDictionary *) dict 652 654 { 653 [NSApp stopModal];654 655 655 NSArray * torrents = [dict objectForKey: @"Torrents"]; 656 656 BOOL deleteData = [[dict objectForKey: @"DeleteData"] boolValue], … … 691 691 [torrent removeForever]; 692 692 693 [fTorrents removeObject: torrent]; 693 694 [fFilteredTorrents removeObject: torrent]; 694 [fTorrents removeObject: torrent];695 695 } 696 696 [torrents release]; -
trunk/macosx/English.lproj/MainMenu.nib/info.nib
r697 r700 33 33 <array> 34 34 <integer>21</integer> 35 <integer>1603</integer> 35 36 </array> 36 37 <key>IBSystem Version</key> -
trunk/macosx/PrefsController.m
r666 r700 31 31 #define DOWNLOAD_FOLDER 0 32 32 #define DOWNLOAD_TORRENT 2 33 #define DOWNLOAD_ASK 333 #define DOWNLOAD_ASK 3 34 34 35 35 #define START_YES_CHECK_TAG 0 -
trunk/macosx/Torrent.m
r696 r700 163 163 [self downloadedValid]], [NSString stringForFileSize: [self size]], 100.0 * [self progress]]; 164 164 else 165 [fProgressString appendFormat: @"%@, uploaded %@ ( ratio: %@)", [NSString stringForFileSize:165 [fProgressString appendFormat: @"%@, uploaded %@ (Ratio: %@)", [NSString stringForFileSize: 166 166 [self size]], [NSString stringForFileSize: [self uploadedTotal]], 167 167 [NSString stringForRatioWithDownload: [self downloadedTotal] upload: [self uploadedTotal]]];
Note: See TracChangeset
for help on using the changeset viewer.