dda23baf42
s3 : update doc for Glacier storage class
...
s3 : update doc for Glacier storage class : related to #923
2018-12-06 21:53:38 +00:00
d3e8ae1820
Add Mark Otway to contributors
2018-12-06 15:13:03 +00:00
91a9a959a2
Add Mathieu Carbou to contributors
2018-12-06 15:12:58 +00:00
04eae51d11
Fix install for Synology
...
7z check doesn't work due to misplaced comma, so installation fails on Synology.
2018-12-06 15:12:21 +00:00
35fba5bfdd
Add Garry McNulty to contributors
2018-12-02 20:52:04 +00:00
887834da91
b2: cleanup unfinished large files
...
The `cleanup` command will delete unfinished large file uploads that
were started more than a day ago (to avoid deleting uploads that are
potentially still in progress).
Fixes #2617
2018-12-02 20:51:13 +00:00
107293c80e
copy,move: restore --no-traverse flag
...
The --no-traverse flag was not implemented when the new sync routines
(using the march package) was implemented.
This re-implements --no-traverse in march by trying to find a match
for each object with NewObject rather than from a directory listing.
2018-12-02 20:28:13 +00:00
d99ffde7c0
s3: change --s3-upload-concurrency default to 4 to increase perfomance #2772
...
Increasing the --s3-upload-concurrency to 4 (from 2) gives an
additional 45% throughput at the cost of 10MB extra memory per transfer.
After testing the upload perfoc
2018-12-02 17:58:34 +00:00
198c34ce21
s3: implement --s3-upload-cutoff for single part uploads below this - fixes #2772
...
Before this change rclone would use multipart uploads for any size of
file. However multipart uploads are less efficient for smaller files
and don't have MD5 checksums so it is advantageous to use single part
uploads if possible.
This implements single part uploads for all files smaller than the
upload_cutoff size. Streamed files must be uploaded as multipart
files though.
2018-12-02 17:58:34 +00:00
d35bd15762
Version v1.45
2018-11-24 13:44:25 +00:00
5fe3b0ad71
Add Stephen Harris to contributors
2018-11-24 10:57:37 +00:00
4c8c87a935
Update PROXY section of the FAQ
2018-11-23 20:14:36 +00:00
703b0535a4
yandex: update docs
2018-11-22 20:14:50 +00:00
26e2f1a998
Add Alexander to contributors
2018-11-20 10:22:11 +00:00
2682d5a9cf
- install with busybox if any
2018-11-20 10:22:00 +00:00
2191592e80
Add Henry Ptasinski to contributors
2018-11-19 13:33:59 +00:00
18f758294e
Add Peter Kaminski to contributors
2018-11-19 13:33:59 +00:00
64fce8438b
docs: Fix a couple of minor typos in rclone_mount.md
...
* "transferring" instead of "transfering"
* "connection" instead of "connnection"
* "mount" instead of "mount mount"
2018-11-14 22:48:58 +00:00
3975d82b3b
Add brused27 to contributors
2018-11-13 17:00:26 +00:00
1b78f4d1ea
Changed the docs scripts to use $HOME & $USER instead of specific values
...
Signed-off-by: Anagh Kumar Baranwal <anaghk.dos@gmail.com >
2018-11-13 11:00:34 +00:00
16f797a7d7
filter: add --ignore-case flag - fixes #502
...
The --ignore-case flag causes the filtering of file names to be case
insensitive. The flag name comes from GNU tar.
2018-11-12 14:29:37 +00:00
9b3c951ab7
Add Jake Coggiano to contributors
2018-11-12 11:34:28 +00:00
84202c7471
onedrive: note 50,000 files is limit for one directory #2707
2018-11-11 15:22:19 +00:00
c4b0a37b21
rc: improve docs on debugging
2018-11-10 10:18:13 +00:00
9322f4baef
Add Erik Swanson to contributors
2018-11-08 12:58:41 +00:00
c0f600764b
Add Scott Edlund to contributors
2018-11-07 14:27:06 +00:00
2b1194c57e
rc: update docs with new methods
2018-11-05 15:44:40 +00:00
75a88de55c
rc/rcserver: with --rc-files if auth set, pass on to URL opened
...
If `--rc-user` or `--rc-pass` is set then the URL that is opened with
`--rc-files` will have the authorization in the URL in the
`http://user:pass@localhost/ ` style.
2018-11-05 15:44:40 +00:00
fa0a9653d2
rc: methods marked as AuthRequired need auth unless --rc-no-auth
...
Methods which can read or mutate external storage will require
authorisation - enforce this. This can be overidden by `--rc-no-auth`.
2018-11-04 20:42:57 +00:00
89550e7121
rcserver: serve directories as well as files
2018-11-04 15:11:51 +00:00
0bfa9811f7
rc: factor server code into rcserver and implement serving objects
...
If a GET or HEAD request is receivied with a URL parameter of fs then
it will be served from that remote.
2018-11-03 11:32:00 +00:00
2089405e1b
fs/rc: add more infrastructure to help writing rc functions
...
- Fs cache for rc commands
- Helper functions for parsing the input
- Reshape command for manipulating JSON blobs
- Background Job starting, control, query and expiry
2018-11-02 17:32:20 +00:00
45d5339fcb
cmd/rc: add --json flag for structured JSON input
2018-11-02 17:32:20 +00:00
04c0564fe2
Add Ralf Hemberger to contributors
2018-11-02 09:53:23 +00:00
f7c31cd210
Add Florian Gamboeck to contributors
2018-10-27 00:28:11 +01:00
e76cf1217f
Added docs to check for key generation on Mega
...
Signed-off-by: Anagh Kumar Baranwal <anaghk.dos@gmail.com >
2018-10-25 22:49:21 +01:00
c5ac96e9e7
Make --files-from only read the objects specified and don't scan directories
...
Before this change using --files-from would scan all the directories
that the files could possibly be in causing rclone to do more work
that was necessary.
After this change, rclone constructs an in memory tree using the
--fast-list mechanism but from all of the files in the --files-from
list and without scanning any directories.
Any objects that are not found in the --files-from list are ignored
silently.
This mechanism is used for sync/copy/move (march) and all of the
listing commands ls/lsf/md5sum/etc (walk).
2018-10-20 18:13:31 +01:00
f96ce5674b
Version v1.44
2018-10-15 11:03:08 +01:00
83b1ae4833
Add buergi to contributors
2018-10-14 17:20:34 +01:00
a3dc591b8e
Add teresy to contributors
2018-10-14 00:19:49 +01:00
0f02c9540c
s3: make --s3-v2-auth flag
...
This is an alternative to setting the region to "other-v2-signature"
which is inconvenient for multi-region providers.
2018-10-14 00:10:29 +01:00
014d58a757
Add David Haguenauer to contributors
2018-10-13 12:56:21 +01:00
1d16e16b30
docs: replace "Github" with "GitHub"
...
This the way GitHub refer to themselves.
2018-10-13 12:55:45 +01:00
8d72ef8d1e
cmd: Don't print non-ASCII characters with --progress on windows - fixes #2501
...
This bug causes lots of strange behaviour with non-ASCII characters and --progress
https://github.com/Azure/go-ansiterm/issues/26
2018-10-11 21:25:04 +01:00
ee25b6106a
Add jackyzy823 to contributors
2018-10-11 14:50:33 +01:00
5c1b135304
Add dcpu to contributors
2018-10-11 14:50:33 +01:00
411a6cc472
onedrive: add link sharing support #2178
2018-10-09 20:11:48 +08:00
78b9bd77f5
docs: auto generate backend options documentation
...
This inserts the output of "rclone help backend xxx" into the help
pages for each backend.
2018-10-06 11:47:46 +01:00
a9273c5da5
docs: move documentation for options from docs/content into backends
...
In the following commit, the documentation will be autogenerated.
2018-10-06 11:47:46 +01:00
ddbd4fd881
Add Paul Kohout to contributors
2018-10-04 08:25:39 +01:00