For the changes see ChangLog.
Nothing to consider for this release ...
To correct a simple but nasty bug which exists in version 1.15 and 1.15.1 you have to do:
File backupdir/<date_time>/.md5CheckSums.info is read by storeBackupRecover to get information about the uncompression program. This information is false since version 1.15 if you use a configuration file:
uncompress=bzip2
it must be:
uncompress=bzip2 -d
You can change this with an editor or use the script correct.sh:
cd backupdir # (now you see the date_time directories) <path>/correct.sh # start the script which appends the ' -d'
--
correct.sh has the following contents:
#! /bin/sh
perl -p -e 's/^\suncompress=bzip2\s$/uncompress=bzip2 -d\n/' -i */.md5CheckSums.info
