Changeset 549
- Timestamp:
- Jul 8, 2006, 2:35:03 PM (16 years ago)
- Location:
- trunk/macosx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Controller.m
r548 r549 789 789 790 790 //notifications 791 [self notifyGrowl: @"Download Complete" message: [torrent name] identifier: @"Download Complete"]; 791 [self notifyGrowl: @"Download Complete" message: [[torrent name] stringByAppendingString: 792 @" is finished downloading"] identifier: @"Download Complete"]; 792 793 if (![fWindow isKeyWindow]) 793 794 fCompleted++; … … 1076 1077 [fInfoController updateInfoStatsAndSettings]; 1077 1078 1078 [self notifyGrowl: @"Seeding Complete" message: [[notification object] name] identifier: @"Seeding Complete"]; 1079 [self notifyGrowl: @"Seeding Complete" message: [[[notification object] name] stringByAppendingString: 1080 @" is finished seeding"] identifier: @"Seeding Complete"]; 1079 1081 } 1080 1082 … … 1184 1186 //import only actually happened if the torrent array is larger 1185 1187 if (oldCount < [fTorrents count]) 1186 [self notifyGrowl: @"Torrent File Auto Added" message: file identifier: @"Torrent Auto Added"]; 1188 [self notifyGrowl: @"Torrent File Auto Added" message: [file stringByAppendingString: 1189 @" added to Transmission"] identifier: @"Torrent Auto Added"]; 1187 1190 } 1188 1191 } -
trunk/macosx/Torrent.m
r548 r549 143 143 fStat = tr_torrentStat(fHandle); 144 144 145 //check to stop for ratio 145 146 if ([self isSeeding] && ((fStopRatioSetting == RATIO_CHECK && [self ratio] >= fRatioLimit) 146 147 || (fStopRatioSetting == RATIO_GLOBAL && [fDefaults boolForKey: @"RatioCheck"]
Note: See TracChangeset
for help on using the changeset viewer.