Skip to content

Commit 4e77a4f

Browse files
committed
Version v1.69.1
1 parent b63c42f commit 4e77a4f

14 files changed

+1119
-353
lines changed

MANUAL.html

+401-243
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MANUAL.md

+198-32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MANUAL.txt

+221-32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/content/changelog.md

+26
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ description: "Rclone Changelog"
55

66
# Changelog
77

8+
## v1.69.1 - 2025-02-14
9+
10+
[See commits](https://github.com/rclone/rclone/compare/v1.69.0...v1.69.1)
11+
12+
* Bug Fixes
13+
* lib/oauthutil: Fix redirect URL mismatch errors (Nick Craig-Wood)
14+
* bisync: Fix listings missing concurrent modifications (nielash)
15+
* serve s3: Fix list objects encoding-type (Nick Craig-Wood)
16+
* fs: Fix confusing "didn't find section in config file" error (Nick Craig-Wood)
17+
* doc fixes (Christoph Berger, Dimitri Papadopoulos, Matt Ickstadt, Nick Craig-Wood, Tim White, Zachary Vorhies)
18+
* build: Added parallel docker builds and caching for go build in the container (Anagh Kumar Baranwal)
19+
* VFS
20+
* Fix the cache failing to upload symlinks when `--links` was specified (Nick Craig-Wood)
21+
* Fix race detected by race detector (Nick Craig-Wood)
22+
* Close the change notify channel on Shutdown (izouxv)
23+
* B2
24+
* Fix "fatal error: concurrent map writes" (Nick Craig-Wood)
25+
* Iclouddrive
26+
* Add notes on ADP and Missing PCS cookies (Nick Craig-Wood)
27+
* Onedrive
28+
* Mark German (de) region as deprecated (Nick Craig-Wood)
29+
* S3
30+
* Added new storage class to magalu provider (Bruno Fernandes)
31+
* Add DigitalOcean regions SFO2, LON1, TOR1, BLR1 (jkpe)
32+
* Add latest Linode Object Storage endpoints (jbagwell-akamai)
33+
834
## v1.69.0 - 2025-01-12
935

1036
[See commits](https://github.com/rclone/rclone/compare/v1.68.0...v1.69.0)

docs/content/commands/rclone.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,7 @@ rclone [flags]
965965
--use-json-log Use json log format
966966
--use-mmap Use mmap allocator (see docs)
967967
--use-server-modtime Use server modified time instead of object metadata
968-
--user-agent string Set the user-agent to a specified string (default "rclone/v1.69.0")
968+
--user-agent string Set the user-agent to a specified string (default "rclone/v1.69.1")
969969
-v, --verbose count Print lots more stuff (repeat for more)
970970
-V, --version Print the version number
971971
--webdav-auth-redirect Preserve authentication on redirect

docs/content/commands/rclone_config_encryption_set.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ password to re-encrypt the config.
2121

2222
When `--password-command` is called to change the password then the
2323
environment variable `RCLONE_PASSWORD_CHANGE=1` will be set. So if
24-
changing passwords programatically you can use the environment
24+
changing passwords programmatically you can use the environment
2525
variable to distinguish which password you must supply.
2626

2727
Alternatively you can remove the password first (with `rclone config
2828
encryption remove`), then set it again with this command which may be
29-
easier if you don't mind the unecrypted config file being on the disk
29+
easier if you don't mind the unencrypted config file being on the disk
3030
briefly.
3131

3232

docs/content/commands/rclone_copyurl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ destination if there is one with the same name.
2828
Setting `--stdout` or making the output file name `-`
2929
will cause the output to be written to standard output.
3030

31-
## Troublshooting
31+
## Troubleshooting
3232

3333
If you can't get `rclone copyurl` to work then here are some things you can try:
3434

docs/content/commands/rclone_purge.md

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ include/exclude filters - everything will be removed. Use the
1515
delete files. To delete empty directories only, use command
1616
[rmdir](/commands/rclone_rmdir/) or [rmdirs](/commands/rclone_rmdirs/).
1717

18+
The concurrency of this operation is controlled by the `--checkers` global flag. However, some backends will
19+
implement this command directly, in which case `--checkers` will be ignored.
20+
1821
**Important**: Since this can cause data loss, test first with the
1922
`--dry-run` or the `--interactive`/`-i` flag.
2023

docs/content/commands/rclone_serve_nfs.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ versionIntroduced: v1.65
77
---
88
# rclone serve nfs
99

10-
*Not available in Windows.*
11-
1210
Serve the remote as an NFS mount
1311

1412
## Synopsis
@@ -55,7 +53,7 @@ that it uses an on disk cache, but the cache entries are held as
5553
symlinks. Rclone will use the handle of the underlying file as the NFS
5654
handle which improves performance. This sort of cache can't be backed
5755
up and restored as the underlying handles will change. This is Linux
58-
only. It requres running rclone as root or with `CAP_DAC_READ_SEARCH`.
56+
only. It requires running rclone as root or with `CAP_DAC_READ_SEARCH`.
5957
You can run rclone with this extra permission by doing this to the
6058
rclone binary `sudo setcap cap_dac_read_search+ep /path/to/rclone`.
6159

docs/content/commands/rclone_serve_s3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ secret_access_key = SECRET_ACCESS_KEY
8282
use_multipart_uploads = false
8383
```
8484

85-
Note that setting `disable_multipart_uploads = true` is to work around
85+
Note that setting `use_multipart_uploads = false` is to work around
8686
[a bug](#bugs) which will be fixed in due course.
8787

8888
## Bugs

docs/content/flags.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ description: "Rclone Global Flags"
99
This describes the global flags available to every rclone command
1010
split into groups.
1111

12-
See the [Options section](/docs/#options) for syntax and usage advice.
13-
1412

1513
## Copy
1614

@@ -118,7 +116,7 @@ Flags for general networking and HTTP stuff.
118116
--tpslimit float Limit HTTP transactions per second to this
119117
--tpslimit-burst int Max burst of transactions for --tpslimit (default 1)
120118
--use-cookies Enable session cookiejar
121-
--user-agent string Set the user-agent to a specified string (default "rclone/v1.69.0")
119+
--user-agent string Set the user-agent to a specified string (default "rclone/v1.69.1")
122120
```
123121

124122

docs/content/googlephotos.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ Use the gphotosdl proxy for downloading the full resolution images
384384
The Google API will deliver images and video which aren't full
385385
resolution, and/or have EXIF data missing.
386386

387-
However if you use the gphotosdl proxy then you can download original,
387+
However if you ue the gphotosdl proxy tnen you can download original,
388388
unchanged images.
389389

390390
This runs a headless browser in the background.

docs/content/onedrive.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ Properties:
319319
- "us"
320320
- Microsoft Cloud for US Government
321321
- "de"
322-
- Microsoft Cloud Germany
322+
- Microsoft Cloud Germany (deprecated - try global region first).
323323
- "cn"
324324
- Azure and Office 365 operated by Vnet Group in China
325325

0 commit comments

Comments
 (0)