mirror of
https://github.com/rclone/rclone.git
synced 2025-12-10 05:13:45 +00:00
Version v1.62.1
This commit is contained in:
14
MANUAL.html
generated
14
MANUAL.html
generated
@@ -19,7 +19,7 @@
|
|||||||
<header id="title-block-header">
|
<header id="title-block-header">
|
||||||
<h1 class="title">rclone(1) User Manual</h1>
|
<h1 class="title">rclone(1) User Manual</h1>
|
||||||
<p class="author">Nick Craig-Wood</p>
|
<p class="author">Nick Craig-Wood</p>
|
||||||
<p class="date">Mar 14, 2023</p>
|
<p class="date">Mar 15, 2023</p>
|
||||||
</header>
|
</header>
|
||||||
<h1 id="rclone-syncs-your-files-to-cloud-storage">Rclone syncs your files to cloud storage</h1>
|
<h1 id="rclone-syncs-your-files-to-cloud-storage">Rclone syncs your files to cloud storage</h1>
|
||||||
<p><img width="50%" src="https://rclone.org/img/logo_on_light__horizontal_color.svg" alt="rclone logo" style="float:right; padding: 5px;" ></p>
|
<p><img width="50%" src="https://rclone.org/img/logo_on_light__horizontal_color.svg" alt="rclone logo" style="float:right; padding: 5px;" ></p>
|
||||||
@@ -8642,7 +8642,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
|
|||||||
--use-json-log Use json log format
|
--use-json-log Use json log format
|
||||||
--use-mmap Use mmap allocator (see docs)
|
--use-mmap Use mmap allocator (see docs)
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string (default "rclone/v1.62.0")
|
--user-agent string Set the user-agent to a specified string (default "rclone/v1.62.1")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)</code></pre>
|
-v, --verbose count Print lots more stuff (repeat for more)</code></pre>
|
||||||
<h2 id="backend-flags">Backend Flags</h2>
|
<h2 id="backend-flags">Backend Flags</h2>
|
||||||
<p>These flags are available for every command. They control the backends and may be set in the config file.</p>
|
<p>These flags are available for every command. They control the backends and may be set in the config file.</p>
|
||||||
@@ -29922,6 +29922,16 @@ $ tree /tmp/b
|
|||||||
<li>"error": return an error based on option value</li>
|
<li>"error": return an error based on option value</li>
|
||||||
</ul>
|
</ul>
|
||||||
<h1 id="changelog">Changelog</h1>
|
<h1 id="changelog">Changelog</h1>
|
||||||
|
<h2 id="v1.62.1---2023-03-15">v1.62.1 - 2023-03-15</h2>
|
||||||
|
<p><a href="https://github.com/rclone/rclone/compare/v1.62.0...v1.62.1">See commits</a></p>
|
||||||
|
<ul>
|
||||||
|
<li>Bug Fixes
|
||||||
|
<ul>
|
||||||
|
<li>docker: Add missing fuse3 dependency (cycneuramus)</li>
|
||||||
|
<li>build: Update release docs to be more careful with the tag (Nick Craig-Wood)</li>
|
||||||
|
<li>build: Set Github release to draft while uploading binaries (Nick Craig-Wood)</li>
|
||||||
|
</ul></li>
|
||||||
|
</ul>
|
||||||
<h2 id="v1.62.0---2023-03-14">v1.62.0 - 2023-03-14</h2>
|
<h2 id="v1.62.0---2023-03-14">v1.62.0 - 2023-03-14</h2>
|
||||||
<p><a href="https://github.com/rclone/rclone/compare/v1.61.0...v1.62.0">See commits</a></p>
|
<p><a href="https://github.com/rclone/rclone/compare/v1.61.0...v1.62.0">See commits</a></p>
|
||||||
<ul>
|
<ul>
|
||||||
|
|||||||
13
MANUAL.md
generated
13
MANUAL.md
generated
@@ -1,6 +1,6 @@
|
|||||||
% rclone(1) User Manual
|
% rclone(1) User Manual
|
||||||
% Nick Craig-Wood
|
% Nick Craig-Wood
|
||||||
% Mar 14, 2023
|
% Mar 15, 2023
|
||||||
|
|
||||||
# Rclone syncs your files to cloud storage
|
# Rclone syncs your files to cloud storage
|
||||||
|
|
||||||
@@ -14940,7 +14940,7 @@ These flags are available for every command.
|
|||||||
--use-json-log Use json log format
|
--use-json-log Use json log format
|
||||||
--use-mmap Use mmap allocator (see docs)
|
--use-mmap Use mmap allocator (see docs)
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string (default "rclone/v1.62.0")
|
--user-agent string Set the user-agent to a specified string (default "rclone/v1.62.1")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -42464,6 +42464,15 @@ Options:
|
|||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.62.1 - 2023-03-15
|
||||||
|
|
||||||
|
[See commits](https://github.com/rclone/rclone/compare/v1.62.0...v1.62.1)
|
||||||
|
|
||||||
|
* Bug Fixes
|
||||||
|
* docker: Add missing fuse3 dependency (cycneuramus)
|
||||||
|
* build: Update release docs to be more careful with the tag (Nick Craig-Wood)
|
||||||
|
* build: Set Github release to draft while uploading binaries (Nick Craig-Wood)
|
||||||
|
|
||||||
## v1.62.0 - 2023-03-14
|
## v1.62.0 - 2023-03-14
|
||||||
|
|
||||||
[See commits](https://github.com/rclone/rclone/compare/v1.61.0...v1.62.0)
|
[See commits](https://github.com/rclone/rclone/compare/v1.61.0...v1.62.0)
|
||||||
|
|||||||
15
MANUAL.txt
generated
15
MANUAL.txt
generated
@@ -1,6 +1,6 @@
|
|||||||
rclone(1) User Manual
|
rclone(1) User Manual
|
||||||
Nick Craig-Wood
|
Nick Craig-Wood
|
||||||
Mar 14, 2023
|
Mar 15, 2023
|
||||||
|
|
||||||
Rclone syncs your files to cloud storage
|
Rclone syncs your files to cloud storage
|
||||||
|
|
||||||
@@ -14483,7 +14483,7 @@ These flags are available for every command.
|
|||||||
--use-json-log Use json log format
|
--use-json-log Use json log format
|
||||||
--use-mmap Use mmap allocator (see docs)
|
--use-mmap Use mmap allocator (see docs)
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string (default "rclone/v1.62.0")
|
--user-agent string Set the user-agent to a specified string (default "rclone/v1.62.1")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
|
|
||||||
Backend Flags
|
Backend Flags
|
||||||
@@ -41964,6 +41964,17 @@ Options:
|
|||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
|
|
||||||
|
v1.62.1 - 2023-03-15
|
||||||
|
|
||||||
|
See commits
|
||||||
|
|
||||||
|
- Bug Fixes
|
||||||
|
- docker: Add missing fuse3 dependency (cycneuramus)
|
||||||
|
- build: Update release docs to be more careful with the tag (Nick
|
||||||
|
Craig-Wood)
|
||||||
|
- build: Set Github release to draft while uploading binaries
|
||||||
|
(Nick Craig-Wood)
|
||||||
|
|
||||||
v1.62.0 - 2023-03-14
|
v1.62.0 - 2023-03-14
|
||||||
|
|
||||||
See commits
|
See commits
|
||||||
|
|||||||
@@ -5,6 +5,15 @@ description: "Rclone Changelog"
|
|||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.62.1 - 2023-03-15
|
||||||
|
|
||||||
|
[See commits](https://github.com/rclone/rclone/compare/v1.62.0...v1.62.1)
|
||||||
|
|
||||||
|
* Bug Fixes
|
||||||
|
* docker: Add missing fuse3 dependency (cycneuramus)
|
||||||
|
* build: Update release docs to be more careful with the tag (Nick Craig-Wood)
|
||||||
|
* build: Set Github release to draft while uploading binaries (Nick Craig-Wood)
|
||||||
|
|
||||||
## v1.62.0 - 2023-03-14
|
## v1.62.0 - 2023-03-14
|
||||||
|
|
||||||
[See commits](https://github.com/rclone/rclone/compare/v1.61.0...v1.62.0)
|
[See commits](https://github.com/rclone/rclone/compare/v1.61.0...v1.62.0)
|
||||||
|
|||||||
@@ -171,7 +171,7 @@ These flags are available for every command.
|
|||||||
--use-json-log Use json log format
|
--use-json-log Use json log format
|
||||||
--use-mmap Use mmap allocator (see docs)
|
--use-mmap Use mmap allocator (see docs)
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string (default "rclone/v1.62.0")
|
--user-agent string Set the user-agent to a specified string (default "rclone/v1.62.1")
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
19
rclone.1
generated
19
rclone.1
generated
@@ -1,7 +1,7 @@
|
|||||||
.\"t
|
.\"t
|
||||||
.\" Automatically generated by Pandoc 2.9.2.1
|
.\" Automatically generated by Pandoc 2.9.2.1
|
||||||
.\"
|
.\"
|
||||||
.TH "rclone" "1" "Mar 14, 2023" "User Manual" ""
|
.TH "rclone" "1" "Mar 15, 2023" "User Manual" ""
|
||||||
.hy
|
.hy
|
||||||
.SH Rclone syncs your files to cloud storage
|
.SH Rclone syncs your files to cloud storage
|
||||||
.PP
|
.PP
|
||||||
@@ -20461,7 +20461,7 @@ These flags are available for every command.
|
|||||||
--use-json-log Use json log format
|
--use-json-log Use json log format
|
||||||
--use-mmap Use mmap allocator (see docs)
|
--use-mmap Use mmap allocator (see docs)
|
||||||
--use-server-modtime Use server modified time instead of object metadata
|
--use-server-modtime Use server modified time instead of object metadata
|
||||||
--user-agent string Set the user-agent to a specified string (default \[dq]rclone/v1.62.0\[dq])
|
--user-agent string Set the user-agent to a specified string (default \[dq]rclone/v1.62.1\[dq])
|
||||||
-v, --verbose count Print lots more stuff (repeat for more)
|
-v, --verbose count Print lots more stuff (repeat for more)
|
||||||
\f[R]
|
\f[R]
|
||||||
.fi
|
.fi
|
||||||
@@ -58046,6 +58046,21 @@ Options:
|
|||||||
.IP \[bu] 2
|
.IP \[bu] 2
|
||||||
\[dq]error\[dq]: return an error based on option value
|
\[dq]error\[dq]: return an error based on option value
|
||||||
.SH Changelog
|
.SH Changelog
|
||||||
|
.SS v1.62.1 - 2023-03-15
|
||||||
|
.PP
|
||||||
|
See commits (https://github.com/rclone/rclone/compare/v1.62.0...v1.62.1)
|
||||||
|
.IP \[bu] 2
|
||||||
|
Bug Fixes
|
||||||
|
.RS 2
|
||||||
|
.IP \[bu] 2
|
||||||
|
docker: Add missing fuse3 dependency (cycneuramus)
|
||||||
|
.IP \[bu] 2
|
||||||
|
build: Update release docs to be more careful with the tag (Nick
|
||||||
|
Craig-Wood)
|
||||||
|
.IP \[bu] 2
|
||||||
|
build: Set Github release to draft while uploading binaries (Nick
|
||||||
|
Craig-Wood)
|
||||||
|
.RE
|
||||||
.SS v1.62.0 - 2023-03-14
|
.SS v1.62.0 - 2023-03-14
|
||||||
.PP
|
.PP
|
||||||
See commits (https://github.com/rclone/rclone/compare/v1.61.0...v1.62.0)
|
See commits (https://github.com/rclone/rclone/compare/v1.61.0...v1.62.0)
|
||||||
|
|||||||
Reference in New Issue
Block a user