-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Comparing changes
Open a pull request
base repository: rclone/rclone
base: v1.52.2
head repository: rclone/rclone
compare: v1.52.3
- 19 commits
- 26 files changed
- 6 contributors
Commits on Jun 25, 2020
-
serve dlna: Fix file list on Samsung Series 6+ TVs
This fixes the command "serve dlna" in order correctly show the list of files on Samsung TV models starting from Series 6.
Configuration menu - View commit details
-
Copy full SHA for d805e63 - Browse repository at this point
Copy the full SHA d805e63View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 1f279f0 - Browse repository at this point
Copy the full SHA 1f279f0View commit details -
drive: Allow the use of --drive-impersonate with the root_folder_id "…
…appDataFolder" In this commit 5c5ad62 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
Configuration menu - View commit details
-
Copy full SHA for d745bc1 - Browse repository at this point
Copy the full SHA d745bc1View commit details
Commits on Jul 1, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 687865f - Browse repository at this point
Copy the full SHA 687865fView commit details
Commits on Jul 2, 2020
-
onedrive: Fix reverting to Copy when Move would have worked
For some objects the onedrive backend has been doing a server side copy and a delete when a server side move would have worked OK. This was caused by not detecting the home drive correctly (when it was an empty string) and assuming that these transfers were cross drive. This is fixed by comparing canonicalizing drive IDs before comparing them.
Configuration menu - View commit details
-
Copy full SHA for a9ffa11 - Browse repository at this point
Copy the full SHA a9ffa11View commit details -
fs/cache: fix moveto/copyto remote:file remote:file2
Before this change, if the cache was given a source `remote:file` it stored `remote:` with the error `fs.ErrorIsFile` attached. This meant that if it `remote:` was subsequently looked up it would return the `fs.ErrorIsFile` error. This broke `moveto remote:file remote:file2` as moveto would lookup `remote:` from the second argument and erroneously get the `fs.ErrorIsFile` error. This likely broke other commands too. This was broken in 4c98360 fs/cache: Add Pin and Unpin and canonicalised lookup Which was released in v1.52.0 The fix is to make a new cache entry for `remote:` with no error attached in the case that the original call returned `fs.ErrorIsFile`.
Configuration menu - View commit details
-
Copy full SHA for 6760ab6 - Browse repository at this point
Copy the full SHA 6760ab6View commit details
Commits on Jul 3, 2020
-
drive: make dangling shortcuts appear in listings
Previous to this a dangling shortcut would error the directory listing. This patch makes dangling shortcuts appear as 0 sized objects in the directory listing so they can be deleted. These objects can't be read though.
Configuration menu - View commit details
-
Copy full SHA for 5c0af62 - Browse repository at this point
Copy the full SHA 5c0af62View commit details -
pcloud: fix oauth on European region "eapi.pcloud.com"
Pcloud appears to have opened up a new region and they are returning the hostname in the oauth callback, thus GET /?code=XXX&locationid=1&hostname=api.pcloud.com&state=XXX HTTP/1.1 GET /?code=XXX&locationid=2&hostname=eapi.pcloud.com&state=XXX HTTP/1.1 This isn't documented yet, however pCloud have confirmed that this is the correct interpretation. Rclone now reads the "hostname" parameter in the oauth callback and stores it in the config file. It uses it for all subequent API calls.Configuration menu - View commit details
-
Copy full SHA for 3278b29 - Browse repository at this point
Copy the full SHA 3278b29View commit details
Commits on Jul 10, 2020
-
s3: fix bucket Region auto detection when Region unset in config #2915
Previous to this fix if Region was not set and Endpoint was not set then we set the endpoint to "https://s3.amazonaws.com/". This is unecessary because if the Region alone isn't set then we set it to "us-east-1" which has the same endpoint. Having the endpoint set breaks the bucket region auto detection with the error "Failed to update region for bucket: can't set region to "xxx" as endpoint is set". This fix removes that check.
Configuration menu - View commit details
-
Copy full SHA for 4f84726 - Browse repository at this point
Copy the full SHA 4f84726View commit details
Commits on Jul 15, 2020
-
Avoid comma rendered in URL in onedrive.md (#4438)
Removed comma from the end of the Azure AD Applications List Blade URL since it was not resolving and customers were opening up support tickets with the Microsoft Azure AD team.
Configuration menu - View commit details
-
Copy full SHA for 8156432 - Browse repository at this point
Copy the full SHA 8156432View commit details -
make_manual: Support SOURCE_DATE_EPOCH
The documentation contains an embedded datetime which do not read SOURCE_DATE_EPOCH. This makes the documentation unreproducible when distribution tries to recreate previous build of the package. This patch ensures we attempt to read the environment variable before default to the current build time. Signed-off-by: Morten Linderud <morten@linderud.pw>
Configuration menu - View commit details
-
Copy full SHA for e8222bb - Browse repository at this point
Copy the full SHA e8222bbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1d45c6e - Browse repository at this point
Copy the full SHA 1d45c6eView commit details -
Configuration menu - View commit details
-
Copy full SHA for ace56b6 - Browse repository at this point
Copy the full SHA ace56b6View commit details -
docs: workaround and policy for Google Drive API
* workaround for Google Drive API * mention the use of Google User Data * unified wording for user data policy
Configuration menu - View commit details
-
Copy full SHA for c0e9584 - Browse repository at this point
Copy the full SHA c0e9584View commit details
Commits on Jul 17, 2020
-
sync: fix deadlock with --track-renames-strategy modtime - fixes #4427
Before this change we could exit the popRenameMap function with the lock held. This fixes the problem by defer-ring the unlock. See: https://forum.rclone.org/t/track-renames-strategy-modtime-doesnt-work/16992
Configuration menu - View commit details
-
Copy full SHA for f949856 - Browse repository at this point
Copy the full SHA f949856View commit details
Commits on Jul 25, 2020
-
drive: drop "Disabling ListR" messages down to debug
This was causing unecessary anguish for users since these messages are harmless and really only interesting for debugging. See: https://forum.rclone.org/t/rclone-gdrive-error/18098
Configuration menu - View commit details
-
Copy full SHA for fb2a4ed - Browse repository at this point
Copy the full SHA fb2a4edView commit details
Commits on Jul 27, 2020
-
docs: update install from source instructions
This has changed post Go modules. In particular it recommends against the go get `-u` flag. See: https://forum.rclone.org/t/install-from-source-go-get-errors/18114
Configuration menu - View commit details
-
Copy full SHA for 073e996 - Browse repository at this point
Copy the full SHA 073e996View commit details
Commits on Aug 2, 2020
-
drive: stop using root_folder_id as a cache #4419
Previous to this change rclone cached the looked up root_folder_id in the root_folder_id config variable. This has caused a lot of confusion and a few attempts at workarounds and ultimately was a mistake. This reverts rclone attempting to cache anything in root_folder_id and returns that variable to be entirely user modified. It gives a little hint in the debug that rclone could be sped up slightly by setting it, but it is up to the user to think about whether that would be OK or not. Google drive root '': root_folder_id = "XXX" - save this in the config to speed up startup It does not change root_folder_id itself, leaving this to the user. See: https://forum.rclone.org/t/rclone-gdrive-no-longer-returning-anything/17215Configuration menu - View commit details
-
Copy full SHA for 029f817 - Browse repository at this point
Copy the full SHA 029f817View commit details
Commits on Aug 7, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 729799a - Browse repository at this point
Copy the full SHA 729799aView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v1.52.2...v1.52.3