diff --git a/src/www/minibar/about.html b/src/www/minibar/about.html
index ec23f3975..8b902051e 100644
--- a/src/www/minibar/about.html
+++ b/src/www/minibar/about.html
@@ -172,11 +172,47 @@ Some implementation details:
the option {startcat_menu:false} when starting the minibar.
[Added 2012-02-10] New minibar option initial_grammar to
control which of the available grammars is selected initially.
+ [Added 2012-03-08] Added the option
+ {tree_img_format: fmt}
+ to make it easy to select "gif", "png" or
+ "svg" output
+ for abstract synax trees, parse trees and word alignment diagrams.
+ [Added 2012-03-19] Minibar now remembers the most recently used grammar
+ and automatically selects it the next time you return to the minibar.
+ (This is implemented using localStorage, i.e. the data is stored locally on
+ the user's device.)
+ [Added 2012-03-26] Support for adding grammars from several servers to
+ the grammar menu. You can also add grammars from several directories on the
+ same server of course. The included minibar configuration file adds the
+ user's own grammars from the grammar editor.
+ [Added 2012-04-02] Word-for-word replacement: when a complete and
+ unambiguous sentence has been entered, the words glow blue and when you
+ click on one, possible replacements appear. (Replacements are shown as names
+ of functions in the abstract syntax for now. They should be shown as words
+ in the concrete syntax instead.) When you click on a replacement word,
+ the sentence is reconstructed with the new word, adjusting other words
+ as needed for agreement. This functionality is activated by passing the
+ option {word_replacements:true} when starting the minibar.
+ [Added 2012-04-03]
+ If you leave the minibar and later return, the previous input will be
+ restored. One input string per grammar is remembered, so you can also switch
+ back and forth between grammars without losing the input.
+ (This is implemented using localStorage, i.e. the data is stored locally on
+ the user's device.)
+ [Added 2012-04-04] Grammar editor integration: as part of the
+ word-for-word replacement interface, minibar can now show a button for
+ extending the grammar with a new word. This is activated by passing the
+ option {extend_grammar:func} when starting the
+ minibar, where func is the editor function to call
+ (to be document further).
+ [Added 2012-04-18] Added buttons to use generated translations as input.
+ (This functionality is available in the original Fridge Poetry, but has
+ been missing in Minibar, until now.)
- Last modified: Wed Feb 29 18:27:59 CET 2012
+ Last modified: Thu Apr 19 14:28:52 CEST 2012
TH