diff --git a/MANUAL.html b/MANUAL.html
index 76b71a9b4..f3fd41ab7 100644
--- a/MANUAL.html
+++ b/MANUAL.html
@@ -17,7 +17,7 @@
rclone(1) User Manual
Nick Craig-Wood
-Aug 26, 2019
+Aug 28, 2019
Rclone - rsync for cloud storage
Rclone is a command line program to sync files and directories to and from:
@@ -4590,7 +4590,7 @@ Showing nodes accounting for 1537.03kB, 100% of 1537.03kB total
--use-json-log Use json log format.
--use-mmap Use mmap allocator (see docs).
--use-server-modtime Use server modified time instead of object metadata
- --user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.49.0")
+ --user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.49.1")
-v, --verbose count Print lots more stuff (repeat for more)
Backend Flags
These flags are available for every command. They control the backends and may be set in the config file.
@@ -12288,6 +12288,23 @@ $ tree /tmp/b
Changelog
+v1.49.1 - 2019-08-28
+Point release to fix config bug and google photos backend.
+
+- Bug Fixes
+
+- config: Fix generated passwords being stored as empty password (Nick Craig-Wood)
+- rcd: Added missing parameter for web-gui info logs. (Chaitanya)
+
+- Googlephotos
+
+- Fix crash on error response (Nick Craig-Wood)
+
+- Onedrive
+
+- Fix crash on error response (Nick Craig-Wood)
+
+
v1.49.0 - 2019-08-26
- New backends
@@ -12302,8 +12319,10 @@ $ tree /tmp/b
- Experimental web GUI (Chaitanya Bankanhal)
- Implement
--compare-dest
& --copy-dest
(yparitcher)
- Implement
--suffix
without --backup-dir
for backup to current dir (yparitcher)
+config reconnect
to re-login (re-run the oauth login) for the backend. (Nick Craig-Wood)
+config userinfo
to discover which user you are logged in as. (Nick Craig-Wood)
+config disconnect
to disconnect you (log out) from the backend. (Nick Craig-Wood)
- Add
--use-json-log
for JSON logging (justinalin)
-- Add
config reconnect
, config userinfo
and config disconnect
subcommands. (Nick Craig-Wood)
- Add context propagation to rclone (Aleksandar Jankovic)
- Reworking internal statistics interfaces so they work with rc jobs (Aleksandar Jankovic)
- Add Higher units for ETA (AbelThar)
diff --git a/MANUAL.md b/MANUAL.md
index 0f8c4f46e..64c7e7b54 100644
--- a/MANUAL.md
+++ b/MANUAL.md
@@ -1,6 +1,6 @@
% rclone(1) User Manual
% Nick Craig-Wood
-% Aug 26, 2019
+% Aug 28, 2019
# Rclone - rsync for cloud storage
@@ -8245,7 +8245,7 @@ These flags are available for every command.
--use-json-log Use json log format.
--use-mmap Use mmap allocator (see docs).
--use-server-modtime Use server modified time instead of object metadata
- --user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.49.0")
+ --user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.49.1")
-v, --verbose count Print lots more stuff (repeat for more)
```
@@ -18466,6 +18466,18 @@ to override the default choice.
# Changelog
+## v1.49.1 - 2019-08-28
+
+Point release to fix config bug and google photos backend.
+
+* Bug Fixes
+ * config: Fix generated passwords being stored as empty password (Nick Craig-Wood)
+ * rcd: Added missing parameter for web-gui info logs. (Chaitanya)
+* Googlephotos
+ * Fix crash on error response (Nick Craig-Wood)
+* Onedrive
+ * Fix crash on error response (Nick Craig-Wood)
+
## v1.49.0 - 2019-08-26
* New backends
@@ -18477,8 +18489,10 @@ to override the default choice.
* Experimental [web GUI](https://rclone.org/gui/) (Chaitanya Bankanhal)
* Implement `--compare-dest` & `--copy-dest` (yparitcher)
* Implement `--suffix` without `--backup-dir` for backup to current dir (yparitcher)
+ * `config reconnect` to re-login (re-run the oauth login) for the backend. (Nick Craig-Wood)
+ * `config userinfo` to discover which user you are logged in as. (Nick Craig-Wood)
+ * `config disconnect` to disconnect you (log out) from the backend. (Nick Craig-Wood)
* Add `--use-json-log` for JSON logging (justinalin)
- * Add `config reconnect`, `config userinfo` and `config disconnect` subcommands. (Nick Craig-Wood)
* Add context propagation to rclone (Aleksandar Jankovic)
* Reworking internal statistics interfaces so they work with rc jobs (Aleksandar Jankovic)
* Add Higher units for ETA (AbelThar)
diff --git a/MANUAL.txt b/MANUAL.txt
index 04a7ceaa4..22ea30dfb 100644
--- a/MANUAL.txt
+++ b/MANUAL.txt
@@ -1,6 +1,6 @@
rclone(1) User Manual
Nick Craig-Wood
-Aug 26, 2019
+Aug 28, 2019
@@ -7824,7 +7824,7 @@ These flags are available for every command.
--use-json-log Use json log format.
--use-mmap Use mmap allocator (see docs).
--use-server-modtime Use server modified time instead of object metadata
- --user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.49.0")
+ --user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.49.1")
-v, --verbose count Print lots more stuff (repeat for more)
@@ -17923,6 +17923,20 @@ override the default choice.
CHANGELOG
+v1.49.1 - 2019-08-28
+
+Point release to fix config bug and google photos backend.
+
+- Bug Fixes
+ - config: Fix generated passwords being stored as empty password
+ (Nick Craig-Wood)
+ - rcd: Added missing parameter for web-gui info logs. (Chaitanya)
+- Googlephotos
+ - Fix crash on error response (Nick Craig-Wood)
+- Onedrive
+ - Fix crash on error response (Nick Craig-Wood)
+
+
v1.49.0 - 2019-08-26
- New backends
@@ -17935,9 +17949,13 @@ v1.49.0 - 2019-08-26
- Implement --compare-dest & --copy-dest (yparitcher)
- Implement --suffix without --backup-dir for backup to current
dir (yparitcher)
+ - config reconnect to re-login (re-run the oauth login) for the
+ backend. (Nick Craig-Wood)
+ - config userinfo to discover which user you are logged in as.
+ (Nick Craig-Wood)
+ - config disconnect to disconnect you (log out) from the backend.
+ (Nick Craig-Wood)
- Add --use-json-log for JSON logging (justinalin)
- - Add config reconnect, config userinfo and config disconnect
- subcommands. (Nick Craig-Wood)
- Add context propagation to rclone (Aleksandar Jankovic)
- Reworking internal statistics interfaces so they work with rc
jobs (Aleksandar Jankovic)
diff --git a/docs/content/changelog.md b/docs/content/changelog.md
index 248948757..c34473361 100644
--- a/docs/content/changelog.md
+++ b/docs/content/changelog.md
@@ -1,11 +1,23 @@
---
title: "Documentation"
description: "Rclone Changelog"
-date: "2019-08-26"
+date: "2019-08-28"
---
# Changelog
+## v1.49.1 - 2019-08-28
+
+Point release to fix config bug and google photos backend.
+
+* Bug Fixes
+ * config: Fix generated passwords being stored as empty password (Nick Craig-Wood)
+ * rcd: Added missing parameter for web-gui info logs. (Chaitanya)
+* Googlephotos
+ * Fix crash on error response (Nick Craig-Wood)
+* Onedrive
+ * Fix crash on error response (Nick Craig-Wood)
+
## v1.49.0 - 2019-08-26
* New backends
diff --git a/docs/content/commands/rclone.md b/docs/content/commands/rclone.md
index c02a0feec..63abf6cd9 100644
--- a/docs/content/commands/rclone.md
+++ b/docs/content/commands/rclone.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone"
slug: rclone
url: /commands/rclone/
diff --git a/docs/content/commands/rclone_about.md b/docs/content/commands/rclone_about.md
index 3eadee23d..b3e10bc7b 100644
--- a/docs/content/commands/rclone_about.md
+++ b/docs/content/commands/rclone_about.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone about"
slug: rclone_about
url: /commands/rclone_about/
diff --git a/docs/content/commands/rclone_authorize.md b/docs/content/commands/rclone_authorize.md
index a0f6e18b1..042f9af83 100644
--- a/docs/content/commands/rclone_authorize.md
+++ b/docs/content/commands/rclone_authorize.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone authorize"
slug: rclone_authorize
url: /commands/rclone_authorize/
diff --git a/docs/content/commands/rclone_cachestats.md b/docs/content/commands/rclone_cachestats.md
index e8da13137..c23ff55da 100644
--- a/docs/content/commands/rclone_cachestats.md
+++ b/docs/content/commands/rclone_cachestats.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone cachestats"
slug: rclone_cachestats
url: /commands/rclone_cachestats/
diff --git a/docs/content/commands/rclone_cat.md b/docs/content/commands/rclone_cat.md
index 5d555602a..08d037114 100644
--- a/docs/content/commands/rclone_cat.md
+++ b/docs/content/commands/rclone_cat.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone cat"
slug: rclone_cat
url: /commands/rclone_cat/
diff --git a/docs/content/commands/rclone_check.md b/docs/content/commands/rclone_check.md
index f6792ce41..3ae99afc1 100644
--- a/docs/content/commands/rclone_check.md
+++ b/docs/content/commands/rclone_check.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone check"
slug: rclone_check
url: /commands/rclone_check/
diff --git a/docs/content/commands/rclone_cleanup.md b/docs/content/commands/rclone_cleanup.md
index c8d76bc26..94c72108c 100644
--- a/docs/content/commands/rclone_cleanup.md
+++ b/docs/content/commands/rclone_cleanup.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone cleanup"
slug: rclone_cleanup
url: /commands/rclone_cleanup/
diff --git a/docs/content/commands/rclone_config.md b/docs/content/commands/rclone_config.md
index 485746e8e..4726660e5 100644
--- a/docs/content/commands/rclone_config.md
+++ b/docs/content/commands/rclone_config.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone config"
slug: rclone_config
url: /commands/rclone_config/
diff --git a/docs/content/commands/rclone_config_create.md b/docs/content/commands/rclone_config_create.md
index 23517655c..4cf5a847d 100644
--- a/docs/content/commands/rclone_config_create.md
+++ b/docs/content/commands/rclone_config_create.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone config create"
slug: rclone_config_create
url: /commands/rclone_config_create/
diff --git a/docs/content/commands/rclone_config_delete.md b/docs/content/commands/rclone_config_delete.md
index 4955c7a54..48263710f 100644
--- a/docs/content/commands/rclone_config_delete.md
+++ b/docs/content/commands/rclone_config_delete.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone config delete"
slug: rclone_config_delete
url: /commands/rclone_config_delete/
diff --git a/docs/content/commands/rclone_config_disconnect.md b/docs/content/commands/rclone_config_disconnect.md
index 6a7d424ac..256bf89c7 100644
--- a/docs/content/commands/rclone_config_disconnect.md
+++ b/docs/content/commands/rclone_config_disconnect.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone config disconnect"
slug: rclone_config_disconnect
url: /commands/rclone_config_disconnect/
diff --git a/docs/content/commands/rclone_config_dump.md b/docs/content/commands/rclone_config_dump.md
index e22214a38..f56a64523 100644
--- a/docs/content/commands/rclone_config_dump.md
+++ b/docs/content/commands/rclone_config_dump.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone config dump"
slug: rclone_config_dump
url: /commands/rclone_config_dump/
diff --git a/docs/content/commands/rclone_config_edit.md b/docs/content/commands/rclone_config_edit.md
index 44c5210ec..56c246a2e 100644
--- a/docs/content/commands/rclone_config_edit.md
+++ b/docs/content/commands/rclone_config_edit.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone config edit"
slug: rclone_config_edit
url: /commands/rclone_config_edit/
diff --git a/docs/content/commands/rclone_config_file.md b/docs/content/commands/rclone_config_file.md
index 1b53f5903..a734aad8a 100644
--- a/docs/content/commands/rclone_config_file.md
+++ b/docs/content/commands/rclone_config_file.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone config file"
slug: rclone_config_file
url: /commands/rclone_config_file/
diff --git a/docs/content/commands/rclone_config_password.md b/docs/content/commands/rclone_config_password.md
index ee3496439..460b3ba47 100644
--- a/docs/content/commands/rclone_config_password.md
+++ b/docs/content/commands/rclone_config_password.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone config password"
slug: rclone_config_password
url: /commands/rclone_config_password/
diff --git a/docs/content/commands/rclone_config_providers.md b/docs/content/commands/rclone_config_providers.md
index 7a59a70e7..cb84e4a45 100644
--- a/docs/content/commands/rclone_config_providers.md
+++ b/docs/content/commands/rclone_config_providers.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone config providers"
slug: rclone_config_providers
url: /commands/rclone_config_providers/
diff --git a/docs/content/commands/rclone_config_reconnect.md b/docs/content/commands/rclone_config_reconnect.md
index c0b7a043f..3915fd77a 100644
--- a/docs/content/commands/rclone_config_reconnect.md
+++ b/docs/content/commands/rclone_config_reconnect.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone config reconnect"
slug: rclone_config_reconnect
url: /commands/rclone_config_reconnect/
diff --git a/docs/content/commands/rclone_config_show.md b/docs/content/commands/rclone_config_show.md
index 1d829d6f0..df10b0f68 100644
--- a/docs/content/commands/rclone_config_show.md
+++ b/docs/content/commands/rclone_config_show.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone config show"
slug: rclone_config_show
url: /commands/rclone_config_show/
diff --git a/docs/content/commands/rclone_config_update.md b/docs/content/commands/rclone_config_update.md
index 872901f24..0c36636a5 100644
--- a/docs/content/commands/rclone_config_update.md
+++ b/docs/content/commands/rclone_config_update.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone config update"
slug: rclone_config_update
url: /commands/rclone_config_update/
diff --git a/docs/content/commands/rclone_config_userinfo.md b/docs/content/commands/rclone_config_userinfo.md
index 7ec95532f..48098886a 100644
--- a/docs/content/commands/rclone_config_userinfo.md
+++ b/docs/content/commands/rclone_config_userinfo.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone config userinfo"
slug: rclone_config_userinfo
url: /commands/rclone_config_userinfo/
diff --git a/docs/content/commands/rclone_copy.md b/docs/content/commands/rclone_copy.md
index 7b305dbb0..a29a0ca48 100644
--- a/docs/content/commands/rclone_copy.md
+++ b/docs/content/commands/rclone_copy.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone copy"
slug: rclone_copy
url: /commands/rclone_copy/
diff --git a/docs/content/commands/rclone_copyto.md b/docs/content/commands/rclone_copyto.md
index 820a7ff10..0b89082e6 100644
--- a/docs/content/commands/rclone_copyto.md
+++ b/docs/content/commands/rclone_copyto.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone copyto"
slug: rclone_copyto
url: /commands/rclone_copyto/
diff --git a/docs/content/commands/rclone_copyurl.md b/docs/content/commands/rclone_copyurl.md
index 5f96c95c4..f443507a1 100644
--- a/docs/content/commands/rclone_copyurl.md
+++ b/docs/content/commands/rclone_copyurl.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone copyurl"
slug: rclone_copyurl
url: /commands/rclone_copyurl/
diff --git a/docs/content/commands/rclone_cryptcheck.md b/docs/content/commands/rclone_cryptcheck.md
index 72cd87110..459a49e5d 100644
--- a/docs/content/commands/rclone_cryptcheck.md
+++ b/docs/content/commands/rclone_cryptcheck.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone cryptcheck"
slug: rclone_cryptcheck
url: /commands/rclone_cryptcheck/
diff --git a/docs/content/commands/rclone_cryptdecode.md b/docs/content/commands/rclone_cryptdecode.md
index 8c0e4c934..14a4d77e4 100644
--- a/docs/content/commands/rclone_cryptdecode.md
+++ b/docs/content/commands/rclone_cryptdecode.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone cryptdecode"
slug: rclone_cryptdecode
url: /commands/rclone_cryptdecode/
diff --git a/docs/content/commands/rclone_dbhashsum.md b/docs/content/commands/rclone_dbhashsum.md
index 79917a0c6..55fe8b81d 100644
--- a/docs/content/commands/rclone_dbhashsum.md
+++ b/docs/content/commands/rclone_dbhashsum.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone dbhashsum"
slug: rclone_dbhashsum
url: /commands/rclone_dbhashsum/
diff --git a/docs/content/commands/rclone_dedupe.md b/docs/content/commands/rclone_dedupe.md
index 819d1cbc6..e6b11ba62 100644
--- a/docs/content/commands/rclone_dedupe.md
+++ b/docs/content/commands/rclone_dedupe.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone dedupe"
slug: rclone_dedupe
url: /commands/rclone_dedupe/
diff --git a/docs/content/commands/rclone_delete.md b/docs/content/commands/rclone_delete.md
index 71d8607ce..e4b86b113 100644
--- a/docs/content/commands/rclone_delete.md
+++ b/docs/content/commands/rclone_delete.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone delete"
slug: rclone_delete
url: /commands/rclone_delete/
diff --git a/docs/content/commands/rclone_deletefile.md b/docs/content/commands/rclone_deletefile.md
index 7b7552689..ef4794a59 100644
--- a/docs/content/commands/rclone_deletefile.md
+++ b/docs/content/commands/rclone_deletefile.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone deletefile"
slug: rclone_deletefile
url: /commands/rclone_deletefile/
diff --git a/docs/content/commands/rclone_genautocomplete.md b/docs/content/commands/rclone_genautocomplete.md
index 9ef697f79..537e69b37 100644
--- a/docs/content/commands/rclone_genautocomplete.md
+++ b/docs/content/commands/rclone_genautocomplete.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone genautocomplete"
slug: rclone_genautocomplete
url: /commands/rclone_genautocomplete/
diff --git a/docs/content/commands/rclone_genautocomplete_bash.md b/docs/content/commands/rclone_genautocomplete_bash.md
index 5e00bb061..0c42aab97 100644
--- a/docs/content/commands/rclone_genautocomplete_bash.md
+++ b/docs/content/commands/rclone_genautocomplete_bash.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone genautocomplete bash"
slug: rclone_genautocomplete_bash
url: /commands/rclone_genautocomplete_bash/
diff --git a/docs/content/commands/rclone_genautocomplete_zsh.md b/docs/content/commands/rclone_genautocomplete_zsh.md
index 67a5cfba0..cdaa7091c 100644
--- a/docs/content/commands/rclone_genautocomplete_zsh.md
+++ b/docs/content/commands/rclone_genautocomplete_zsh.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone genautocomplete zsh"
slug: rclone_genautocomplete_zsh
url: /commands/rclone_genautocomplete_zsh/
diff --git a/docs/content/commands/rclone_gendocs.md b/docs/content/commands/rclone_gendocs.md
index a69018fc5..991cd394a 100644
--- a/docs/content/commands/rclone_gendocs.md
+++ b/docs/content/commands/rclone_gendocs.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone gendocs"
slug: rclone_gendocs
url: /commands/rclone_gendocs/
diff --git a/docs/content/commands/rclone_hashsum.md b/docs/content/commands/rclone_hashsum.md
index 087e75779..56928fb57 100644
--- a/docs/content/commands/rclone_hashsum.md
+++ b/docs/content/commands/rclone_hashsum.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone hashsum"
slug: rclone_hashsum
url: /commands/rclone_hashsum/
diff --git a/docs/content/commands/rclone_link.md b/docs/content/commands/rclone_link.md
index 8dc633839..33ebccb55 100644
--- a/docs/content/commands/rclone_link.md
+++ b/docs/content/commands/rclone_link.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone link"
slug: rclone_link
url: /commands/rclone_link/
diff --git a/docs/content/commands/rclone_listremotes.md b/docs/content/commands/rclone_listremotes.md
index 4f8ce6eb3..fe3aabfe0 100644
--- a/docs/content/commands/rclone_listremotes.md
+++ b/docs/content/commands/rclone_listremotes.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone listremotes"
slug: rclone_listremotes
url: /commands/rclone_listremotes/
diff --git a/docs/content/commands/rclone_ls.md b/docs/content/commands/rclone_ls.md
index c3b83d360..9f1011daf 100644
--- a/docs/content/commands/rclone_ls.md
+++ b/docs/content/commands/rclone_ls.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone ls"
slug: rclone_ls
url: /commands/rclone_ls/
diff --git a/docs/content/commands/rclone_lsd.md b/docs/content/commands/rclone_lsd.md
index fd7dc50f1..2e980db57 100644
--- a/docs/content/commands/rclone_lsd.md
+++ b/docs/content/commands/rclone_lsd.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone lsd"
slug: rclone_lsd
url: /commands/rclone_lsd/
diff --git a/docs/content/commands/rclone_lsf.md b/docs/content/commands/rclone_lsf.md
index 93215f9b4..e01ee16c0 100644
--- a/docs/content/commands/rclone_lsf.md
+++ b/docs/content/commands/rclone_lsf.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone lsf"
slug: rclone_lsf
url: /commands/rclone_lsf/
diff --git a/docs/content/commands/rclone_lsjson.md b/docs/content/commands/rclone_lsjson.md
index 150ef017c..9486715b7 100644
--- a/docs/content/commands/rclone_lsjson.md
+++ b/docs/content/commands/rclone_lsjson.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone lsjson"
slug: rclone_lsjson
url: /commands/rclone_lsjson/
diff --git a/docs/content/commands/rclone_lsl.md b/docs/content/commands/rclone_lsl.md
index 99842acfe..9403178a5 100644
--- a/docs/content/commands/rclone_lsl.md
+++ b/docs/content/commands/rclone_lsl.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone lsl"
slug: rclone_lsl
url: /commands/rclone_lsl/
diff --git a/docs/content/commands/rclone_md5sum.md b/docs/content/commands/rclone_md5sum.md
index 219f4910e..765bea667 100644
--- a/docs/content/commands/rclone_md5sum.md
+++ b/docs/content/commands/rclone_md5sum.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone md5sum"
slug: rclone_md5sum
url: /commands/rclone_md5sum/
diff --git a/docs/content/commands/rclone_mkdir.md b/docs/content/commands/rclone_mkdir.md
index dd49266ef..396461f30 100644
--- a/docs/content/commands/rclone_mkdir.md
+++ b/docs/content/commands/rclone_mkdir.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone mkdir"
slug: rclone_mkdir
url: /commands/rclone_mkdir/
diff --git a/docs/content/commands/rclone_mount.md b/docs/content/commands/rclone_mount.md
index bdc0f5324..ca7907178 100644
--- a/docs/content/commands/rclone_mount.md
+++ b/docs/content/commands/rclone_mount.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone mount"
slug: rclone_mount
url: /commands/rclone_mount/
diff --git a/docs/content/commands/rclone_move.md b/docs/content/commands/rclone_move.md
index fa52dbb06..cd68fe7df 100644
--- a/docs/content/commands/rclone_move.md
+++ b/docs/content/commands/rclone_move.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone move"
slug: rclone_move
url: /commands/rclone_move/
diff --git a/docs/content/commands/rclone_moveto.md b/docs/content/commands/rclone_moveto.md
index 3793848ad..d1ec16631 100644
--- a/docs/content/commands/rclone_moveto.md
+++ b/docs/content/commands/rclone_moveto.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone moveto"
slug: rclone_moveto
url: /commands/rclone_moveto/
diff --git a/docs/content/commands/rclone_ncdu.md b/docs/content/commands/rclone_ncdu.md
index d2f927250..04f14c9d7 100644
--- a/docs/content/commands/rclone_ncdu.md
+++ b/docs/content/commands/rclone_ncdu.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone ncdu"
slug: rclone_ncdu
url: /commands/rclone_ncdu/
diff --git a/docs/content/commands/rclone_obscure.md b/docs/content/commands/rclone_obscure.md
index 0cd6621a6..f20588d1a 100644
--- a/docs/content/commands/rclone_obscure.md
+++ b/docs/content/commands/rclone_obscure.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone obscure"
slug: rclone_obscure
url: /commands/rclone_obscure/
diff --git a/docs/content/commands/rclone_purge.md b/docs/content/commands/rclone_purge.md
index 31d97647d..90b7a7e56 100644
--- a/docs/content/commands/rclone_purge.md
+++ b/docs/content/commands/rclone_purge.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone purge"
slug: rclone_purge
url: /commands/rclone_purge/
diff --git a/docs/content/commands/rclone_rc.md b/docs/content/commands/rclone_rc.md
index a42e14e59..1b381b93a 100644
--- a/docs/content/commands/rclone_rc.md
+++ b/docs/content/commands/rclone_rc.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone rc"
slug: rclone_rc
url: /commands/rclone_rc/
diff --git a/docs/content/commands/rclone_rcat.md b/docs/content/commands/rclone_rcat.md
index b56b02e4c..1aba81e14 100644
--- a/docs/content/commands/rclone_rcat.md
+++ b/docs/content/commands/rclone_rcat.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone rcat"
slug: rclone_rcat
url: /commands/rclone_rcat/
diff --git a/docs/content/commands/rclone_rcd.md b/docs/content/commands/rclone_rcd.md
index 358d72e28..177735608 100644
--- a/docs/content/commands/rclone_rcd.md
+++ b/docs/content/commands/rclone_rcd.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone rcd"
slug: rclone_rcd
url: /commands/rclone_rcd/
diff --git a/docs/content/commands/rclone_rmdir.md b/docs/content/commands/rclone_rmdir.md
index c63bc110f..cf89844b6 100644
--- a/docs/content/commands/rclone_rmdir.md
+++ b/docs/content/commands/rclone_rmdir.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone rmdir"
slug: rclone_rmdir
url: /commands/rclone_rmdir/
diff --git a/docs/content/commands/rclone_rmdirs.md b/docs/content/commands/rclone_rmdirs.md
index 895bf3770..428bf485c 100644
--- a/docs/content/commands/rclone_rmdirs.md
+++ b/docs/content/commands/rclone_rmdirs.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone rmdirs"
slug: rclone_rmdirs
url: /commands/rclone_rmdirs/
diff --git a/docs/content/commands/rclone_serve.md b/docs/content/commands/rclone_serve.md
index 61284beee..fa1fc0630 100644
--- a/docs/content/commands/rclone_serve.md
+++ b/docs/content/commands/rclone_serve.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone serve"
slug: rclone_serve
url: /commands/rclone_serve/
diff --git a/docs/content/commands/rclone_serve_dlna.md b/docs/content/commands/rclone_serve_dlna.md
index da866a92e..670e7501d 100644
--- a/docs/content/commands/rclone_serve_dlna.md
+++ b/docs/content/commands/rclone_serve_dlna.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone serve dlna"
slug: rclone_serve_dlna
url: /commands/rclone_serve_dlna/
diff --git a/docs/content/commands/rclone_serve_ftp.md b/docs/content/commands/rclone_serve_ftp.md
index 027b2dc9b..2c67f8e70 100644
--- a/docs/content/commands/rclone_serve_ftp.md
+++ b/docs/content/commands/rclone_serve_ftp.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone serve ftp"
slug: rclone_serve_ftp
url: /commands/rclone_serve_ftp/
diff --git a/docs/content/commands/rclone_serve_http.md b/docs/content/commands/rclone_serve_http.md
index 4d75268bf..ba6d7ac1f 100644
--- a/docs/content/commands/rclone_serve_http.md
+++ b/docs/content/commands/rclone_serve_http.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone serve http"
slug: rclone_serve_http
url: /commands/rclone_serve_http/
diff --git a/docs/content/commands/rclone_serve_restic.md b/docs/content/commands/rclone_serve_restic.md
index dc54635c5..9a39071bb 100644
--- a/docs/content/commands/rclone_serve_restic.md
+++ b/docs/content/commands/rclone_serve_restic.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone serve restic"
slug: rclone_serve_restic
url: /commands/rclone_serve_restic/
diff --git a/docs/content/commands/rclone_serve_sftp.md b/docs/content/commands/rclone_serve_sftp.md
index 191c8338d..d2d7eea88 100644
--- a/docs/content/commands/rclone_serve_sftp.md
+++ b/docs/content/commands/rclone_serve_sftp.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone serve sftp"
slug: rclone_serve_sftp
url: /commands/rclone_serve_sftp/
diff --git a/docs/content/commands/rclone_serve_webdav.md b/docs/content/commands/rclone_serve_webdav.md
index cd0750b54..53a9d9376 100644
--- a/docs/content/commands/rclone_serve_webdav.md
+++ b/docs/content/commands/rclone_serve_webdav.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone serve webdav"
slug: rclone_serve_webdav
url: /commands/rclone_serve_webdav/
diff --git a/docs/content/commands/rclone_settier.md b/docs/content/commands/rclone_settier.md
index b43ab5546..a6bd89492 100644
--- a/docs/content/commands/rclone_settier.md
+++ b/docs/content/commands/rclone_settier.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone settier"
slug: rclone_settier
url: /commands/rclone_settier/
diff --git a/docs/content/commands/rclone_sha1sum.md b/docs/content/commands/rclone_sha1sum.md
index 2fd097475..61b0b852d 100644
--- a/docs/content/commands/rclone_sha1sum.md
+++ b/docs/content/commands/rclone_sha1sum.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone sha1sum"
slug: rclone_sha1sum
url: /commands/rclone_sha1sum/
diff --git a/docs/content/commands/rclone_size.md b/docs/content/commands/rclone_size.md
index a5ffb10c0..6091a65c5 100644
--- a/docs/content/commands/rclone_size.md
+++ b/docs/content/commands/rclone_size.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone size"
slug: rclone_size
url: /commands/rclone_size/
diff --git a/docs/content/commands/rclone_sync.md b/docs/content/commands/rclone_sync.md
index cd2d5d1e1..6cdec4f70 100644
--- a/docs/content/commands/rclone_sync.md
+++ b/docs/content/commands/rclone_sync.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone sync"
slug: rclone_sync
url: /commands/rclone_sync/
diff --git a/docs/content/commands/rclone_touch.md b/docs/content/commands/rclone_touch.md
index 3ebf60ac0..30293c7b5 100644
--- a/docs/content/commands/rclone_touch.md
+++ b/docs/content/commands/rclone_touch.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone touch"
slug: rclone_touch
url: /commands/rclone_touch/
diff --git a/docs/content/commands/rclone_tree.md b/docs/content/commands/rclone_tree.md
index 34d4357cb..1a3395da5 100644
--- a/docs/content/commands/rclone_tree.md
+++ b/docs/content/commands/rclone_tree.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone tree"
slug: rclone_tree
url: /commands/rclone_tree/
diff --git a/docs/content/commands/rclone_version.md b/docs/content/commands/rclone_version.md
index 64886a042..2f0743e25 100644
--- a/docs/content/commands/rclone_version.md
+++ b/docs/content/commands/rclone_version.md
@@ -1,5 +1,5 @@
---
-date: 2019-08-26T15:19:45+01:00
+date: 2019-08-28T17:50:40+01:00
title: "rclone version"
slug: rclone_version
url: /commands/rclone_version/
diff --git a/docs/content/flags.md b/docs/content/flags.md
index 73bdfb58c..05fd2a6dc 100755
--- a/docs/content/flags.md
+++ b/docs/content/flags.md
@@ -1,7 +1,7 @@
---
title: "Global Flags"
description: "Rclone Global Flags"
-date: "2019-08-26T15:19:45+01:00"
+date: "2019-08-28T17:50:40+01:00"
---
# Global Flags
@@ -127,7 +127,7 @@ These flags are available for every command.
--use-json-log Use json log format.
--use-mmap Use mmap allocator (see docs).
--use-server-modtime Use server modified time instead of object metadata
- --user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.49.0")
+ --user-agent string Set the user-agent to a specified string. The default is rclone/ version (default "rclone/v1.49.1")
-v, --verbose count Print lots more stuff (repeat for more)
```
diff --git a/docs/layouts/partials/version.html b/docs/layouts/partials/version.html
index f67c24e26..18e438b09 100644
--- a/docs/layouts/partials/version.html
+++ b/docs/layouts/partials/version.html
@@ -1 +1 @@
-v1.49.0
\ No newline at end of file
+v1.49.1
\ No newline at end of file
diff --git a/fs/version.go b/fs/version.go
index 5447023ab..ce1fc200f 100644
--- a/fs/version.go
+++ b/fs/version.go
@@ -1,4 +1,4 @@
package fs
// Version of rclone
-var Version = "v1.49.0"
+var Version = "v1.49.1"
diff --git a/rclone.1 b/rclone.1
index 452298429..ddf06a9cb 100644
--- a/rclone.1
+++ b/rclone.1
@@ -1,7 +1,7 @@
.\"t
.\" Automatically generated by Pandoc 2.2.1
.\"
-.TH "rclone" "1" "Aug 26, 2019" "User Manual" ""
+.TH "rclone" "1" "Aug 28, 2019" "User Manual" ""
.hy
.SH Rclone \- rsync for cloud storage
.PP
@@ -10462,7 +10462,7 @@ These flags are available for every command.
\ \ \ \ \ \ \-\-use\-json\-log\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Use\ json\ log\ format.
\ \ \ \ \ \ \-\-use\-mmap\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Use\ mmap\ allocator\ (see\ docs).
\ \ \ \ \ \ \-\-use\-server\-modtime\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Use\ server\ modified\ time\ instead\ of\ object\ metadata
-\ \ \ \ \ \ \-\-user\-agent\ string\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Set\ the\ user\-agent\ to\ a\ specified\ string.\ The\ default\ is\ rclone/\ version\ (default\ "rclone/v1.49.0")
+\ \ \ \ \ \ \-\-user\-agent\ string\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Set\ the\ user\-agent\ to\ a\ specified\ string.\ The\ default\ is\ rclone/\ version\ (default\ "rclone/v1.49.1")
\ \ \-v,\ \-\-verbose\ count\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Print\ lots\ more\ stuff\ (repeat\ for\ more)
\f[]
.fi
@@ -23648,6 +23648,31 @@ Type: bool
.IP \[bu] 2
Default: false
.SH Changelog
+.SS v1.49.1 \- 2019\-08\-28
+.PP
+Point release to fix config bug and google photos backend.
+.IP \[bu] 2
+Bug Fixes
+.RS 2
+.IP \[bu] 2
+config: Fix generated passwords being stored as empty password (Nick
+Craig\-Wood)
+.IP \[bu] 2
+rcd: Added missing parameter for web\-gui info logs.
+(Chaitanya)
+.RE
+.IP \[bu] 2
+Googlephotos
+.RS 2
+.IP \[bu] 2
+Fix crash on error response (Nick Craig\-Wood)
+.RE
+.IP \[bu] 2
+Onedrive
+.RS 2
+.IP \[bu] 2
+Fix crash on error response (Nick Craig\-Wood)
+.RE
.SS v1.49.0 \- 2019\-08\-26
.IP \[bu] 2
New backends
@@ -23673,12 +23698,19 @@ Implement \f[C]\-\-compare\-dest\f[] & \f[C]\-\-copy\-dest\f[]
Implement \f[C]\-\-suffix\f[] without \f[C]\-\-backup\-dir\f[] for
backup to current dir (yparitcher)
.IP \[bu] 2
-Add \f[C]\-\-use\-json\-log\f[] for JSON logging (justinalin)
-.IP \[bu] 2
-Add \f[C]config\ reconnect\f[], \f[C]config\ userinfo\f[] and
-\f[C]config\ disconnect\f[] subcommands.
+\f[C]config\ reconnect\f[] to re\-login (re\-run the oauth login) for
+the backend.
(Nick Craig\-Wood)
.IP \[bu] 2
+\f[C]config\ userinfo\f[] to discover which user you are logged in as.
+(Nick Craig\-Wood)
+.IP \[bu] 2
+\f[C]config\ disconnect\f[] to disconnect you (log out) from the
+backend.
+(Nick Craig\-Wood)
+.IP \[bu] 2
+Add \f[C]\-\-use\-json\-log\f[] for JSON logging (justinalin)
+.IP \[bu] 2
Add context propagation to rclone (Aleksandar Jankovic)
.IP \[bu] 2
Reworking internal statistics interfaces so they work with rc jobs