rclone-dev:fix-2658-gcs-gzip

Last commit made on 2020-06-25
Get this branch:
git clone -b fix-2658-gcs-gzip https://git.launchpad.net/rclone-dev

Branch merges

Branch information

Name:
fix-2658-gcs-gzip
Repository:
lp:rclone-dev

Recent commits

ee28856... by Nick Craig-Wood

gcs: Allow compressed files to be downloaded - fixes #2658

Before this change, the go runtime would automatically decompress
compressed objects leading to length mismatches.

After this change rclone will download the compressed object which
will match in length and checksum.

61e4b4d... by Nick Craig-Wood

drive: Allow the use of --drive-impersonate with the root_folder_id "appDataFolder"

In this commit

5c5ad6220 drive: fix --drive-impersonate with cached root_folder_id

We disabled the use of root_folder_id with --drive-impersonate to fix
a problem with a cached root_folder_id giving the wrong results.

This, alas, broke one users setup with a root_folder_id of
appDataFolder. Since this is identifiable and definitely couldn't have
been cached, we can safely skip this check in this case.

See: https://forum.rclone.org/t/rclone-gdrive-no-longer-returning-anything/17215/10

fd7c63b... by Nick Craig-Wood

s3: add backend restore command to restore objects from GLACIER

See: https://forum.rclone.org/t/rclone-settier-fails-with-scaleway-entitytoolarge/17384

49a7d08... by Nick Craig-Wood

qingstor: cancel in progress multipart uploads on rclone exit #4300

2c10ce6... by Nick Craig-Wood

onedrive: rework cancel of multipart uploads on rclone exit #4300

This now uses the atexit.OnError framework rather than a home grown one.

a41a294... by Nick Craig-Wood

box: cancel in progress multipart uploads and copies on rclone exit #4300

47b17dc... by Nick Craig-Wood

b2: cancel in progress multipart uploads and copies on rclone exit #4300

5f75444... by Nick Craig-Wood

s3: cancel in progress multipart uploads and copies on rclone exit #4300

54fda34... by Nick Craig-Wood

atexit: implement OnError for cancelling multpart uploads

fcc2db8... by Nick Craig-Wood

doc: disable smart typography (eg en-dash) in MANUAL.* and man page

Before this change MANUAL.html and rclone.1 would show flags like –addr

Now it shows --addr which is easy to copy and paste.

This was pointed out in #4362