From d5181118ccbfbecad3313797cbb88e7a205a2a56 Mon Sep 17 00:00:00 2001
From: buengese <buengese@gmail.com>
Date: Wed, 2 Dec 2020 01:47:07 +0100
Subject: [PATCH] compress: finish docs

---
 MAINTAINERS.md                  | 2 +-
 README.md                       | 1 +
 bin/make_manual.py              | 1 +
 docs/content/docs.md            | 1 +
 docs/layouts/chrome/navbar.html | 1 +
 5 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/MAINTAINERS.md b/MAINTAINERS.md
index 654da33c6..4665b3697 100644
--- a/MAINTAINERS.md
+++ b/MAINTAINERS.md
@@ -11,7 +11,7 @@ Current active maintainers of rclone are:
 | Fabian Möller    | @B4dM4n           |                              |
 | Alex Chen        | @Cnly             | onedrive backend             |
 | Sandeep Ummadi   | @sandeepkru       | azureblob backend            |
-| Sebastian Bünger | @buengese         | jottacloud & yandex backends |
+| Sebastian Bünger | @buengese         | jottacloud, yandex & compress backends |
 | Ivan Andreev     | @ivandeex         | chunker & mailru backends    |
 | Max Sum          | @Max-Sum          | union backend                |
 | Fred             | @creativeprojects | seafile backend              |
diff --git a/README.md b/README.md
index 75d7a94b0..96481862a 100644
--- a/README.md
+++ b/README.md
@@ -83,6 +83,7 @@ Please see [the full list of all storage providers and their features](https://r
   * [Check](https://rclone.org/commands/rclone_check/) mode to check for file hash equality
   * Can sync to and from network, e.g. two different cloud accounts
   * Optional large file chunking ([Chunker](https://rclone.org/chunker/))
+  * Optional transparent compression ([Compress](https://rclone.org/compress/))
   * Optional encryption ([Crypt](https://rclone.org/crypt/))
   * Optional cache ([Cache](https://rclone.org/cache/))
   * Optional FUSE mount ([rclone mount](https://rclone.org/commands/rclone_mount/))
diff --git a/bin/make_manual.py b/bin/make_manual.py
index 210893afd..2d16685bc 100755
--- a/bin/make_manual.py
+++ b/bin/make_manual.py
@@ -35,6 +35,7 @@ docs = [
     "chunker.md",
     "sharefile.md",
     "crypt.md",
+    "compress.md",
     "dropbox.md",
     "filefabric.md",
     "ftp.md",
diff --git a/docs/content/docs.md b/docs/content/docs.md
index 9671686f9..78d51da71 100644
--- a/docs/content/docs.md
+++ b/docs/content/docs.md
@@ -27,6 +27,7 @@ See the following for detailed instructions for
   * [Cache](/cache/)
   * [Chunker](/chunker/) - transparently splits large files for other remotes
   * [Citrix ShareFile](/sharefile/)
+  * [Compress](/compress/)
   * [Crypt](/crypt/) - to encrypt other remotes
   * [DigitalOcean Spaces](/s3/#digitalocean-spaces)
   * [Dropbox](/dropbox/)
diff --git a/docs/layouts/chrome/navbar.html b/docs/layouts/chrome/navbar.html
index 1625ba58c..48fa275fd 100644
--- a/docs/layouts/chrome/navbar.html
+++ b/docs/layouts/chrome/navbar.html
@@ -69,6 +69,7 @@
           <a class="dropdown-item" href="/box/"><i class="fa fa-archive"></i> Box</a>
           <a class="dropdown-item" href="/cache/"><i class="fa fa-archive"></i> Cache</a>
           <a class="dropdown-item" href="/chunker/"><i class="fa fa-cut"></i> Chunker (splits large files)</a>
+          <a class="dropdown-item" href="/compress/"><i class="fa fa-file-archive-o"></i> Compress (transparent gzip compression)</a>
           <a class="dropdown-item" href="/sharefile/"><i class="fas fa-share-square"></i> Citrix ShareFile</a>
           <a class="dropdown-item" href="/crypt/"><i class="fa fa-lock"></i> Crypt (encrypts the others)</a>
           <a class="dropdown-item" href="/dropbox/"><i class="fab fa-dropbox"></i> Dropbox</a>