The Macintosh version has now been fully released and it is available on the
Downloads page.
This is a small part of the Profile Overview:
Here's the complete
screenshot.
Macintosh Limitations
A couple of features are not available on Macintosh yet. Where possible, these missing features will be added to the Mac version soon.
- Only one profile can run at the same time. The only exception is that the scheduler can be running a profile while you can start another one using the GUI.
- No HTTP downloading from web sites (but WebDAV works fine!).
- Real-time synchronization can monitor up to 100 folders and subfolders.
- File permissions are not copied along with the files.
- The program can't mount volumes on its own. You need to mount volumes manually or use an external script (see below).
- Possibly some other platform-specific differences.
Sample Script for mounting a network volume
The following script can be created with the AppleScript editor and saved as an application:
if "MyVolume" is not in (list disks) then
mount volume "smb://thenas/thesharedvolume"
end if
The AppleScript can be invoked using the "Execute before/after" option
on the Job tab sheet in the profile. The path to the script must be
specified in full, for example /Users/username/Documents/ScriptName.app