You need to include a preference file in your preferences folder, which on the Mac can be found at:
1 | {home folder}:Library:Preferences:65bit Software |
1 | C:\Users\{user name}\AppData\Roaming\65bit Software |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <easycatalog> <preferences> <values> <!-- Contains the average transfer speed in bytes per second that the transfer should be below during CURLLowSpeedTimeout seconds for libcurl to consider it to be too slow and abort. --> <!-- https://curl.haxx.se/libcurl/c/CURLOPT_LOW_SPEED_LIMIT.html --> <value key="CURLLowSpeed" value="1000"/> <!-- Contains the time in number seconds that the transfer speed should be below the kPreferencesURLLowSpeedLimitKey for the library to consider it too slow and abort. --> <!-- https://curl.haxx.se/libcurl/c/CURLOPT_LOW_SPEED_TIME.html --> <value key="CURLLowSpeedTimeout" value="10"/> <!-- The maximum time in seconds that you allow the libcurl transfer operation to take. --> <!-- https://curl.haxx.se/libcurl/c/CURLOPT_TIMEOUT.html --> <value key="CURLTimeout" value="60"/> </values> </preferences> </easycatalog> |