Monitor a folder for torrent files, adding them as they are added (by polling the folder). Growl notifications for import, and only try to reimport the same torrent if the setting is changed, the app is restarted, or the torrent file is moved to a different folder then moved back.

Original code from Steve (brilla on the forums).
This commit is contained in:
Mitchell Livingston
2006-07-07 01:03:52 +00:00
parent 59ddd1f75c
commit cb8baebb35
8 changed files with 173 additions and 32 deletions

View File

@@ -5,6 +5,8 @@
{
ACTIONS = {
folderSheetShow = id;
importFolderSheetShow = id;
setAutoImport = id;
setBadge = id;
setDownloadLocation = id;
setLimit = id;
@@ -22,6 +24,7 @@
CLASS = PrefsController;
LANGUAGE = ObjC;
OUTLETS = {
fAutoImportCheck = NSButton;
fBadgeDownloadRateCheck = NSButton;
fBadgeUploadRateCheck = NSButton;
fBandwidthView = NSView;
@@ -31,6 +34,7 @@
fDownloadField = NSTextField;
fFolderPopUp = NSPopUpButton;
fGeneralView = NSView;
fImportFolderPopUp = NSPopUpButton;
fNetworkView = NSView;
fPortField = NSTextField;
fQuitCheck = NSButton;