b9d9f9edb0
docs: use --interactive instead of -i in examples to avoid confusion
2023-01-24 20:43:51 +01:00
2001cc0831
Version v1.61.0
2022-12-20 17:16:14 +00:00
959cd938bc
docs: Add minimum versions to all the backend pages and some of the other pages
2022-11-18 14:41:24 +00:00
a2dca02594
docs: fix character that was incorrectly interpreted as markdown
2022-11-07 08:50:21 +01:00
00a684d877
Version v1.59.0
2022-07-09 18:09:25 +01:00
c556e98f49
local: add Metadata support #111
2022-06-29 14:29:36 +01:00
f9354fff2f
Version v1.58.0
2022-03-18 12:29:54 +00:00
169990e270
Version v1.57.0
2021-11-01 15:45:40 +00:00
91cdaffcc1
docs: add faq section explaining why rclone changes fullwidth characters in file names
2021-11-01 12:46:23 +00:00
c2597a4fa3
docs: cleanup header levels in backend docs ( #5698 )
2021-10-14 15:40:18 +02:00
37ff05a5fa
Version v1.56.0
2021-07-20 19:45:41 +01:00
6dc190ec93
docs: mention that network/unc paths are supported in local filesystem on windows
2021-05-19 22:11:17 +02:00
e7b736f8ca
docs: fix minor typo in symlinks / junction points
2021-04-10 15:34:34 +02:00
6e2e2d9eb2
Version v1.55.0
2021-03-31 19:12:08 +01:00
18cd2064ec
mount: docs: add note about volume path syntax on windows
2021-03-11 17:09:22 +00:00
2d7afe8690
local: Add flag --no-preallocate - #3207
...
Some virtual filesystems (such as Google Drive File Stream) may
incorrectly set the actual file size equal to the preallocated space,
causing checksum and file size checks to fail.
This flag can be used to disable preallocation for local backends of
this type.
2021-02-11 17:25:28 +00:00
7f5ee5d81f
Version v1.54.0
2021-02-02 14:17:09 +00:00
e4a87f772f
docs: spelling: e.g.
...
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com >
2020-10-28 18:16:23 +00:00
510ac341e1
Version v1.53.0
2020-09-02 17:00:18 +01:00
844b903595
docs: promote the use of -i/--interactive and "rclone sync -i" everywhere #1574
2020-06-10 12:33:53 +01:00
e62c032184
docs: remove manually set dates and use git dates instead
2020-06-01 13:07:46 +01:00
6882aeff97
Version v1.52.0
2020-05-27 17:31:10 +01:00
74b8cbfb84
docs: set unsafe HTML parsing to false and fix raw HTML insertion
...
This means that markdown files can't contain <thing> any more.
2020-05-27 17:31:09 +01:00
48eef2fb3c
docs: add missing word
2020-05-26 13:49:09 +01:00
fb169a8b54
doc: fix typos throughout docs
2020-05-19 12:02:44 +01:00
e2916f3a55
local: implement backend command "noop" for testing purposes
2020-04-29 10:10:57 +01:00
43daecd89b
Version v1.51.0
2020-02-01 10:40:01 +00:00
6fabf476cf
Version v1.50.0
2019-10-26 11:04:54 +01:00
a98a750fc9
local: use lib/encoder
2019-09-30 14:05:49 +01:00
a6387e1f81
Version v1.49.0
2019-08-26 15:25:20 +01:00
93810a739d
docs: update fontawesome free to 5.10.2 and fixup broken images
2019-08-25 11:09:19 +01:00
57d5de6fba
build: fix up package paths after repo move
...
git grep -l github.com/ncw/rclone | xargs -d'\n' perl -i~ -lpe 's|github.com/ncw/rclone|github.com/rclone/rclone|g'
goimports -w `find . -name \*.go`
2019-07-28 18:47:38 +01:00
eb85ecc9c4
Version v1.46
2019-02-09 10:42:57 +00:00
e317f04098
local: make using -l/--links with -L/--copy-links throw an error #1152
2019-01-28 13:47:27 +00:00
b369fcde28
local: add documentation for -l
option #1152
2019-01-28 13:47:27 +00: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
d5b2ec32f1
local: add --local-no-check-updated to disable update checks #2206
...
This disables the `can't copy - source file is being updated` checks.
2018-04-09 15:27:58 +01:00
a8dfc5ce3b
Fix spelling in some documentation
2017-11-05 21:38:59 +00:00
4ac9a65049
fs: stop normalizing file names but do a normalized compare in the sync
...
This works by using a transform function to transform file names when
doing a compare when matching file names in a directory. rclone now
UTF-8 normalizes the file names and does a case insensitive compare if
the destination remote is case insensitive.
This deprecates the --local-no-unicode-normalization flag.
Fixes #1477
2017-09-16 19:49:31 +01:00
4b0e983323
Local: Make documentation consistent with code
...
Change flag `--no-local-unicode-normalization` to `--local-no-unicode-normalization` since that's the way the flag is called in the source code.
Fixes #1633
2017-08-31 16:46:14 +01:00
6152bab28d
local: add --skip-links to suppress symlink warnings
...
Give users a way to explicitly acknowledge that symlinks are to be skipped
without warnings.
Fixes #1480 .
2017-07-23 15:02:02 +01:00
525220b14e
Add --local-no-unicode-normalization flag
...
Fixes #1411
2017-05-24 07:36:06 +01:00
94947f2523
Implement -L, --copy-links flag to allow rclone to follow symlinks
...
Fixes #40
2017-01-29 13:43:20 +00:00
b35123ba48
Make -x/--one-file-system compile under Windows and add docs
2016-11-03 11:53:49 +00:00
835b6761b7
Write about convmv in the docs for fixing non UTF-8 filesystems - fixes #300
2016-02-21 14:09:06 +00:00
3c31d711b3
Add local file system option to disable UNC on Windows.
...
This will add an option to disable UNC conversion on Windows to deal with buggy file system implementations like EncFS.
Fixes #261
2016-01-05 17:08:11 +00:00
bf4879f57f
Expand docs and remove duplicated information
2015-06-06 14:17:14 +01:00
870a9fc3b2
local: fix encoding of non utf-8 file names - fixes #66
2015-05-21 18:40:16 +01:00
07f9a1a9f0
Update docs for Dropbox and Google Cloud Storage
2014-07-18 10:10:08 +01:00