diff --git a/MANUAL.html b/MANUAL.html
index 0dad4ff33..17b9054af 100644
--- a/MANUAL.html
+++ b/MANUAL.html
@@ -1774,6 +1774,36 @@ nounc = true
This will use UNC paths on c:\src
but not on z:\dst
. 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.
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
diff --git a/MANUAL.md b/MANUAL.md
index c786110b7..199eb0d2e 100644
--- a/MANUAL.md
+++ b/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`
diff --git a/MANUAL.txt b/MANUAL.txt
index 96c11545d..516764dcd 100644
--- a/MANUAL.txt
+++ b/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
diff --git a/RELEASE.md b/RELEASE.md
index 597700266..ee7d1b0ed 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -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
diff --git a/rclone.1 b/rclone.1
index 9ebcc7c65..ccb4c06c5 100644
--- a/rclone.1
+++ b/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