Changeset 4090
- Timestamp:
- Dec 8, 2007, 6:51:02 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NEWS
r4080 r4090 8 8 + Updated icon 9 9 - OS X: 10 + Redesigned Leopard-like look 10 11 + Statistics window 11 12 + Pieces Bar (return of Advanced Bar) 12 13 + Availability Bar (overlay on regular bar) 13 + Redesigned Leopard-like look14 14 + Leopard: Time Machine will ignore incomplete downloads 15 15 + Display remaining time for seeding transfers 16 16 + Sort by total activity 17 + Leopard: Fix bug where text fields would reject localized double values 17 + Leopard: Fix bug where text fields would reject localized decimal values 18 + Fix bug where dragging non-torrent files over the main window would result in excessive memory usage 18 19 - GTK+: 19 20 + Statistics window -
trunk/macosx/Controller.m
r4088 r4090 229 229 [toolbar setAllowsUserCustomization: YES]; 230 230 [toolbar setAutosavesConfiguration: YES]; 231 [toolbar setDisplayMode: NSToolbarDisplayModeIconOnly]; 231 232 [fWindow setToolbar: toolbar]; 232 233 [toolbar release]; … … 293 294 294 295 [fTableView setTorrents: fDisplayedTorrents]; 295 [[fTableView tableColumnWithIdentifier: @"Torrent"] setDataCell: [[ TorrentCell alloc] init]];296 [[fTableView tableColumnWithIdentifier: @"Torrent"] setDataCell: [[[TorrentCell alloc] init] autorelease]]; 296 297 297 298 [fTableView registerForDraggedTypes: [NSArray arrayWithObject: TORRENT_TABLE_VIEW_DATA_TYPE]]; … … 2726 2727 2727 2728 NSSegmentedControl * segmentedControl = [[NSSegmentedControl alloc] initWithFrame: NSZeroRect]; 2728 [segmentedControl setCell: [[ ToolbarSegmentedCell alloc] init]];2729 [segmentedControl setCell: [[[ToolbarSegmentedCell alloc] init] autorelease]]; 2729 2730 [groupItem setView: segmentedControl]; 2730 2731 NSSegmentedCell * segmentedCell = (NSSegmentedCell *)[segmentedControl cell]; … … 2758 2759 2759 2760 [segmentedControl release]; 2760 2761 2761 return [groupItem autorelease]; 2762 2762 } … … 2766 2766 2767 2767 NSSegmentedControl * segmentedControl = [[NSSegmentedControl alloc] initWithFrame: NSZeroRect]; 2768 [segmentedControl setCell: [[ ToolbarSegmentedCell alloc] init]];2768 [segmentedControl setCell: [[[ToolbarSegmentedCell alloc] init] autorelease]]; 2769 2769 [groupItem setView: segmentedControl]; 2770 2770 NSSegmentedCell * segmentedCell = (NSSegmentedCell *)[segmentedControl cell]; -
trunk/macosx/English.lproj/MainMenu.nib/classes.nib
r4063 r4090 57 57 <key>ACTIONS</key> 58 58 <dict> 59 <key>allToolbarClicked</key> 60 <string>id</string> 59 61 <key>announceSelectedTorrents</key> 60 62 <string>id</string> … … 102 104 <string>id</string> 103 105 <key>revealFile</key> 106 <string>id</string> 107 <key>selectedToolbarClicked</key> 104 108 <string>id</string> 105 109 <key>setFilter</key> … … 238 242 </dict> 239 243 <dict> 244 <key>CLASS</key> 245 <string>FilterButton</string> 246 <key>LANGUAGE</key> 247 <string>ObjC</string> 248 <key>SUPERCLASS</key> 249 <string>NSButton</string> 250 </dict> 251 <dict> 240 252 <key>ACTIONS</key> 241 253 <dict> … … 274 286 <key>SUPERCLASS</key> 275 287 <string>NSTableView</string> 276 </dict>277 <dict>278 <key>CLASS</key>279 <string>FilterButton</string>280 <key>LANGUAGE</key>281 <string>ObjC</string>282 <key>SUPERCLASS</key>283 <string>NSButton</string>284 288 </dict> 285 289 <dict> -
trunk/macosx/English.lproj/MainMenu.nib/info.nib
r4078 r4090 11 11 <key>IBOpenObjects</key> 12 12 <array> 13 <integer> 1480</integer>13 <integer>2351</integer> 14 14 </array> 15 15 <key>IBSystem Version</key> -
trunk/macosx/ToolbarSegmentedCell.h
r4088 r4090 25 25 #import <Cocoa/Cocoa.h> 26 26 27 28 27 @interface ToolbarSegmentedCell : NSSegmentedCell 29 28 { -
trunk/macosx/Torrent.m
r4054 r4090 211 211 fStat = tr_torrentStat(fHandle); 212 212 213 #warning find a better way214 213 //check if the file is created for Time Machine 215 214 if (fNeedSetTimeMachine && [self isActive])
Note: See TracChangeset
for help on using the changeset viewer.