Commit Graph

2571 Commits

Author SHA1 Message Date
1bb89bc818 docs: add missing sftp providers to README and main docs page - fixes #8038 2024-08-28 07:25:49 +01:00
f65755b3a3 Add Pawel Palucha to contributors 2024-08-28 07:08:21 +01:00
33c5f35935 Add John Oxley to contributors 2024-08-28 07:07:34 +01:00
4367b999c9 Add Georg Welzel to contributors 2024-08-28 07:04:02 +01:00
b57e6213aa Add Péter Bozsó to contributors 2024-08-28 07:04:02 +01:00
cd90ba4337 Add Sam Harrison to contributors 2024-08-28 07:04:02 +01:00
956c2963fd bisync: don't convert modtime precision in listings - fixes #8025
Some checks are pending
Docker beta build / Build image job (push) Waiting to run
Before this change, bisync proactively converted modtime precision when greater
than what the destination backend supported.

This dates back to a time before bisync considered the modifyWindow for same-side
comparisons. Back then, it was problematic to save a listing with 12:54:49.7 for
a backend that can't handle that precision, as on the next run the backend would
report the time as 12:54:50 and bisync would think the file had changed. So the
truncation was a workaround to anticipate this and proactively record the time
with the precision we expect to receive next time.

However, this caused problems for backends (such as dropbox) that round instead
of truncating as bisync expected.

After this change, bisync preserves the original precision in the listing
(without conversion), even when greater than what the backend supports, to avoid
rounding error. On the next run, bisync will compare it to the rounded time
reported by the backend, and if it's within the modifyWindow, it will treat them
as equivalent.
2024-08-24 22:32:48 -04:00
1e14523b82 docs: make tardigrade page auto redirect to storj page 2024-08-17 16:00:42 +02:00
da25305ba0 docs: update backend config samples 2024-08-17 16:00:18 +02:00
a0af72c27a docs: update ssh tunnel example 2024-08-16 20:27:23 +02:00
28d6985764 docs: update rclone authorize section 2024-08-16 20:27:23 +02:00
f2ce9a9557 docs: fix command highlight 2024-08-16 20:27:23 +02:00
95151eac82 docs: fix alignment of some of the icons in the storage system dropdown
Some checks are pending
Docker beta build / Build image job (push) Waiting to run
2024-08-16 11:07:54 +02:00
bd9bf4eb1c docs: mark filescom as supporting link sharing
Some checks are pending
Docker beta build / Build image job (push) Waiting to run
2024-08-15 22:55:45 +01:00
ae9960a4ed filescom: add Files.com backend 2024-08-15 17:00:39 +01:00
3ffa47ea16 webdav: add --webdav-unix-socket-path to connect to a unix socket
This adds a new optional parameter to the backend, to specify a path
to a unix domain socket to connect to, instead the specified URL.

The URL itself is still used for the rest of the HTTP client, allowing
host and subpath to stay intact.

This allows using rclone with the webdav backend to connect to a WebDAV
server provided at a Unix Domain socket:

    rclone serve webdav --addr unix:///tmp/my.socket remote:path
    rclone --webdav-unix-socket /tmp/my.socket --webdav-url http://localhost lsf :webdav:
2024-08-15 15:14:51 +01:00
c1a98768bc Implement Gofile backend - fixes #4632 2024-08-14 21:15:37 +01:00
bac9abebfb lib/encoder: add Exclamation mark encoding 2024-08-14 21:15:37 +01:00
5f66350331 Add Fornax to contributors 2024-08-14 21:12:56 +01:00
4b922d86d7 drive: update docs on creating admin service accounts 2024-08-12 20:27:12 +01:00
3b3625037c Add pixeldrain backend
Some checks are pending
Docker beta build / Build image job (push) Waiting to run
This commit adds support for pixeldrain's experimental filesystem API.
2024-08-12 13:35:44 +01:00
bfa3278f30 docs: add comment how to reduce rclone binary size (#8000)
Some checks failed
Docker beta build / Build image job (push) Has been cancelled
See #7998
2024-08-10 17:52:32 +01:00
16d642825d docs: remove old genautocomplete command docs and add as alias from the newer completion command 2024-08-08 13:34:10 +01:00
50aebcf403 docs: replace references to genautocomplete with the new name completion 2024-08-08 13:34:10 +01:00
8aef1de695 s3: fix Cloudflare R2 integration tests after SDKv2 update #4989
Cloudflare will normally automatically decompress files with
`Content-Encoding: gzip` when downloaded. This is not what AWS S3 does
and it breaks the integration tests.

This fudges the integration tests to upload the test file with
`Cache-Control: no-transform` on Cloudflare R2 and puts a note in the
docs about this problem.
2024-08-07 12:13:13 +01:00
fd9049c83d s3: update to using AWS SDK v2 - fixes #4989
SDK v2 conversion

Changes

  - `--s3-sts-endpoint` is no longer supported
  - `--s3-use-unsigned-payload` to control use of trailer checksums (needed for non AWS)
2024-08-07 12:13:13 +01:00
9866d1c636 docs: s3: add section on using too much memory #7974 2024-08-01 16:33:09 +01:00
c5c7bcdd45 docs: link the workaround for big directory syncs in the FAQ #7974 2024-08-01 16:33:09 +01:00
d5c7b55ba5 Add David Seifert to contributors 2024-08-01 16:33:09 +01:00
feafbfca52 Add Will Miles to contributors 2024-08-01 16:33:09 +01:00
abe01179ae Add Ernie Hershey to contributors 2024-08-01 16:33:09 +01:00
612c717ea0 docs: rc: fix correct _path to _root in on the fly backend docs 2024-07-30 10:19:47 +01:00
dcecb0ede4 docs: clarify hasher operation
Add a line to the "other operations" block to indicate that the hasher overlay will apply auto-size and other checks for all commands.
2024-07-24 11:07:52 +01:00
47588a7fd0 docs: fix typo in batcher docs for dropbox and googlephotos 2024-07-24 10:58:22 +01:00
ba381f8721 b2: update versions documentation - fixes #7878 2024-07-24 10:52:05 +01:00
30ba7542ff docs: add Route4Me as a sponsor 2024-07-22 14:48:41 +01:00
04f35fc3ac Add Tobias Markus to contributors 2024-07-20 12:49:08 +01:00
d008381e59 Add AThePeanut4 to contributors 2024-07-20 10:54:47 +01:00
4824837eed azureblob: allow anonymous access for public resources
See: https://forum.rclone.org/t/azure-blob-public-resources/46882
2024-07-18 11:13:29 +01:00
5287a9b5fa Add Ke Wang to contributors 2024-07-18 11:13:29 +01:00
f2ce1767f0 Add itsHenry to contributors 2024-07-18 11:13:29 +01:00
7f048ac901 Add Tomasz Melcer to contributors 2024-07-18 11:13:29 +01:00
b0d0e0b267 Add Paul Collins to contributors 2024-07-18 11:13:29 +01:00
f5eef420a4 Add Russ Bubley to contributors 2024-07-18 11:13:29 +01:00
d4b29fef92 fs: Allow semicolons as well as spaces in --bwlimit timetable parsing - fixes #7595 2024-07-17 11:04:01 +01:00
e041796bfe docs: correct description of encoding None and add Raw. 2024-07-15 12:10:04 +01:00
8fbb259091 rc: add options/info call to enumerate options
This also makes some fields in the Options block optional - these are
documented in rc.md
2024-07-15 11:09:54 +01:00
754e53dbcc docs: remove warp as silver sponsor 2024-06-24 10:33:18 +01:00
0e85ba5080 Add Filipe Herculano to contributors 2024-06-24 09:30:59 +01:00
e5095a7d7b Add Thearas to contributors 2024-06-24 09:30:59 +01:00