diff --git a/index.html b/index.html
index b021dbd..7cf98cd 100644
--- a/index.html
+++ b/index.html
@@ -121,7 +121,7 @@
Right now the only modes supported are reading from standard input and writing to standard output. FUSE mounts and NBD servers may be added later if someone contributes the code.
The program keeps all known blocks in an in-RAM hash table, which may create scalability problems for very large repos (see below).
The only encryption mode currently implemented is AES-128 in CBC mode with PKCS#7 padding. If you believe that this is not secure enough, patches are welcome. Before you jump to conclusions however, read this article.
-The only compression mode supported is LZMA, which suits backups very nicely.
+The only compression modes supported are LZMA, which suits backups very nicely, and LZO, which enables much faster backups at the expense of storage size. More compression modes could be supported, eg zlib.
It's only possible to fully restore the backup in order to get to a required file, without any option to quickly pick it out. tar would not allow to do it anyway, but e.g. for zip files it could have been possible. This is possible to implement though, e.g. by exposing the data over a FUSE filesystem.
There's no option to delete old backup data yet. The possibility is all there, though. Someone needs to implement it (see below).
There's no option to specify block and bundle sizes other than the default ones (currently 64k and 2MB respectively), though it's trivial to add command-line switches for those.