mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 06:49:15 +08:00
Commit missing docs changes and adjust RELEASE.md to make sure it doesn't happen again
This commit is contained in:
parent
3c7f80f58f
commit
e0c03a11ab
30
MANUAL.html
30
MANUAL.html
|
@ -1774,6 +1774,36 @@ nounc = true</code></pre>
|
|||
<p>This will use UNC paths on <code>c:\src</code> but not on <code>z:\dst</code>. Of course this will cause problems if the absolute path length of a file exceeds 258 characters on z, so only use this option if you have to.</p>
|
||||
<h2 id="changelog">Changelog</h2>
|
||||
<ul>
|
||||
<li>v1.28 - 2016-03-01
|
||||
<ul>
|
||||
<li>New Features</li>
|
||||
<li>Configuration file encryption - thanks Klaus Post</li>
|
||||
<li>Improve <code>rclone config</code> adding more help and making it easier to understand</li>
|
||||
<li>Implement <code>-u</code>/<code>--update</code> so creation times can be used on all remotes</li>
|
||||
<li>Implement <code>--low-level-retries</code> flag</li>
|
||||
<li>Optionally disable gzip compression on downloads with <code>--no-gzip-encoding</code></li>
|
||||
<li>Bug fixes</li>
|
||||
<li>Don't make directories if <code>--dry-run</code> set</li>
|
||||
<li>Fix and document the <code>move</code> command</li>
|
||||
<li>Fix redirecting stderr on unix-like OSes when using <code>--log-file</code></li>
|
||||
<li>Fix <code>delete</code> command to wait until all finished - fixes missing deletes.</li>
|
||||
<li>Backblaze B2</li>
|
||||
<li>Use one upload URL per go routine fixes <code>more than one upload using auth token</code></li>
|
||||
<li>Add pacing, retries and reauthentication - fixes token expiry problems</li>
|
||||
<li>Upload without using a temporary file from local (and remotes which support SHA1)</li>
|
||||
<li>Fix reading metadata for all files when it shouldn't have been</li>
|
||||
<li>Drive</li>
|
||||
<li>Fix listing drive documents at root</li>
|
||||
<li>Disable copy and move for Google docs</li>
|
||||
<li>Swift</li>
|
||||
<li>Fix uploading of chunked files with non ASCII characters</li>
|
||||
<li>Allow setting of <code>storage_url</code> in the config - thanks Xavier Lucas</li>
|
||||
<li>S3</li>
|
||||
<li>Allow IAM role and credentials from environment variables - thanks Brian Stengaard</li>
|
||||
<li>Allow low privilege users to use S3 (check if directory exists during Mkdir) - thanks Jakub Gedeon</li>
|
||||
<li>Amazon Cloud Drive</li>
|
||||
<li>Retry on more things to make directory listings more reliable</li>
|
||||
</ul></li>
|
||||
<li>v1.27 - 2016-01-31
|
||||
<ul>
|
||||
<li>New Features</li>
|
||||
|
|
28
MANUAL.md
28
MANUAL.md
|
@ -2733,6 +2733,34 @@ file exceeds 258 characters on z, so only use this option if you have to.
|
|||
Changelog
|
||||
---------
|
||||
|
||||
* v1.28 - 2016-03-01
|
||||
* New Features
|
||||
* Configuration file encryption - thanks Klaus Post
|
||||
* Improve `rclone config` adding more help and making it easier to understand
|
||||
* Implement `-u`/`--update` so creation times can be used on all remotes
|
||||
* Implement `--low-level-retries` flag
|
||||
* Optionally disable gzip compression on downloads with `--no-gzip-encoding`
|
||||
* Bug fixes
|
||||
* Don't make directories if `--dry-run` set
|
||||
* Fix and document the `move` command
|
||||
* Fix redirecting stderr on unix-like OSes when using `--log-file`
|
||||
* Fix `delete` command to wait until all finished - fixes missing deletes.
|
||||
* Backblaze B2
|
||||
* Use one upload URL per go routine fixes `more than one upload using auth token`
|
||||
* Add pacing, retries and reauthentication - fixes token expiry problems
|
||||
* Upload without using a temporary file from local (and remotes which support SHA1)
|
||||
* Fix reading metadata for all files when it shouldn't have been
|
||||
* Drive
|
||||
* Fix listing drive documents at root
|
||||
* Disable copy and move for Google docs
|
||||
* Swift
|
||||
* Fix uploading of chunked files with non ASCII characters
|
||||
* Allow setting of `storage_url` in the config - thanks Xavier Lucas
|
||||
* S3
|
||||
* Allow IAM role and credentials from environment variables - thanks Brian Stengaard
|
||||
* Allow low privilege users to use S3 (check if directory exists during Mkdir) - thanks Jakub Gedeon
|
||||
* Amazon Cloud Drive
|
||||
* Retry on more things to make directory listings more reliable
|
||||
* v1.27 - 2016-01-31
|
||||
* New Features
|
||||
* Easier headless configuration with `rclone authorize`
|
||||
|
|
37
MANUAL.txt
37
MANUAL.txt
|
@ -2692,6 +2692,43 @@ characters on z, so only use this option if you have to.
|
|||
|
||||
Changelog
|
||||
|
||||
- v1.28 - 2016-03-01
|
||||
- New Features
|
||||
- Configuration file encryption - thanks Klaus Post
|
||||
- Improve rclone config adding more help and making it easier to
|
||||
understand
|
||||
- Implement -u/--update so creation times can be used on all
|
||||
remotes
|
||||
- Implement --low-level-retries flag
|
||||
- Optionally disable gzip compression on downloads with
|
||||
--no-gzip-encoding
|
||||
- Bug fixes
|
||||
- Don't make directories if --dry-run set
|
||||
- Fix and document the move command
|
||||
- Fix redirecting stderr on unix-like OSes when using --log-file
|
||||
- Fix delete command to wait until all finished - fixes missing
|
||||
deletes.
|
||||
- Backblaze B2
|
||||
- Use one upload URL per go routine fixes
|
||||
more than one upload using auth token
|
||||
- Add pacing, retries and reauthentication - fixes token expiry
|
||||
problems
|
||||
- Upload without using a temporary file from local (and remotes
|
||||
which support SHA1)
|
||||
- Fix reading metadata for all files when it shouldn't have been
|
||||
- Drive
|
||||
- Fix listing drive documents at root
|
||||
- Disable copy and move for Google docs
|
||||
- Swift
|
||||
- Fix uploading of chunked files with non ASCII characters
|
||||
- Allow setting of storage_url in the config - thanks Xavier Lucas
|
||||
- S3
|
||||
- Allow IAM role and credentials from environment variables -
|
||||
thanks Brian Stengaard
|
||||
- Allow low privilege users to use S3 (check if directory exists
|
||||
during Mkdir) - thanks Jakub Gedeon
|
||||
- Amazon Cloud Drive
|
||||
- Retry on more things to make directory listings more reliable
|
||||
- v1.27 - 2016-01-31
|
||||
- New Features
|
||||
- Easier headless configuration with rclone authorize
|
||||
|
|
|
@ -13,6 +13,7 @@ Making a release
|
|||
* make test
|
||||
* make tag
|
||||
* edit docs/content/changelog.md
|
||||
* make doc
|
||||
* git commit -a -v
|
||||
* make retag
|
||||
* # Set the GOPATH for a gox enabled compiler - . ~/bin/go-cross - not required for go >= 1.5
|
||||
|
|
68
rclone.1
68
rclone.1
|
@ -3365,6 +3365,74 @@ Of course this will cause problems if the absolute path length of a file
|
|||
exceeds 258 characters on z, so only use this option if you have to.
|
||||
.SS Changelog
|
||||
.IP \[bu] 2
|
||||
v1.28 \- 2016\-03\-01
|
||||
.RS 2
|
||||
.IP \[bu] 2
|
||||
New Features
|
||||
.IP \[bu] 2
|
||||
Configuration file encryption \- thanks Klaus Post
|
||||
.IP \[bu] 2
|
||||
Improve \f[C]rclone\ config\f[] adding more help and making it easier to
|
||||
understand
|
||||
.IP \[bu] 2
|
||||
Implement \f[C]\-u\f[]/\f[C]\-\-update\f[] so creation times can be used
|
||||
on all remotes
|
||||
.IP \[bu] 2
|
||||
Implement \f[C]\-\-low\-level\-retries\f[] flag
|
||||
.IP \[bu] 2
|
||||
Optionally disable gzip compression on downloads with
|
||||
\f[C]\-\-no\-gzip\-encoding\f[]
|
||||
.IP \[bu] 2
|
||||
Bug fixes
|
||||
.IP \[bu] 2
|
||||
Don\[aq]t make directories if \f[C]\-\-dry\-run\f[] set
|
||||
.IP \[bu] 2
|
||||
Fix and document the \f[C]move\f[] command
|
||||
.IP \[bu] 2
|
||||
Fix redirecting stderr on unix\-like OSes when using
|
||||
\f[C]\-\-log\-file\f[]
|
||||
.IP \[bu] 2
|
||||
Fix \f[C]delete\f[] command to wait until all finished \- fixes missing
|
||||
deletes.
|
||||
.IP \[bu] 2
|
||||
Backblaze B2
|
||||
.IP \[bu] 2
|
||||
Use one upload URL per go routine fixes
|
||||
\f[C]more\ than\ one\ upload\ using\ auth\ token\f[]
|
||||
.IP \[bu] 2
|
||||
Add pacing, retries and reauthentication \- fixes token expiry problems
|
||||
.IP \[bu] 2
|
||||
Upload without using a temporary file from local (and remotes which
|
||||
support SHA1)
|
||||
.IP \[bu] 2
|
||||
Fix reading metadata for all files when it shouldn\[aq]t have been
|
||||
.IP \[bu] 2
|
||||
Drive
|
||||
.IP \[bu] 2
|
||||
Fix listing drive documents at root
|
||||
.IP \[bu] 2
|
||||
Disable copy and move for Google docs
|
||||
.IP \[bu] 2
|
||||
Swift
|
||||
.IP \[bu] 2
|
||||
Fix uploading of chunked files with non ASCII characters
|
||||
.IP \[bu] 2
|
||||
Allow setting of \f[C]storage_url\f[] in the config \- thanks Xavier
|
||||
Lucas
|
||||
.IP \[bu] 2
|
||||
S3
|
||||
.IP \[bu] 2
|
||||
Allow IAM role and credentials from environment variables \- thanks
|
||||
Brian Stengaard
|
||||
.IP \[bu] 2
|
||||
Allow low privilege users to use S3 (check if directory exists during
|
||||
Mkdir) \- thanks Jakub Gedeon
|
||||
.IP \[bu] 2
|
||||
Amazon Cloud Drive
|
||||
.IP \[bu] 2
|
||||
Retry on more things to make directory listings more reliable
|
||||
.RE
|
||||
.IP \[bu] 2
|
||||
v1.27 \- 2016\-01\-31
|
||||
.RS 2
|
||||
.IP \[bu] 2
|
||||
|
|
Loading…
Reference in New Issue
Block a user