diff --git a/README.md b/README.md
index 1ea5935..ff1d27a 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,7 @@ The different block modes are:
- block readout API: All websites not on the white list or black list can use the <canvas> API to display something on the page, but the readout API is not allowed to return values to the website.
- fake readout API: Canvas Blocker's default setting, and my favorite! All websites not on the white list or black list can use the <canvas> API to display something on the page, but the readout API is forced to return a new random value each time it is called.
+- fake at input: on display of text the drawn pixels get modified slightly. This makes the detection of the add-on harder but is less secure. On WebGL-canvas the behaviour is identical to "fake readout API".
- ask for readout API permission: All websites not on the white list or black list can use the <canvas> API to display something on the page, but the user will be asked if the website should be allowed to use the readout API each time it is called.
- block everything: Ignore all lists and block the <canvas> API on all websites.
- allow only white list: Only websites in the white list are allowed to use the <canvas> API.
diff --git a/addon description/de/description.txt b/addon description/de/description.txt
index 3802e31..5b83ca9 100644
--- a/addon description/de/description.txt
+++ b/addon description/de/description.txt
@@ -4,6 +4,7 @@ Die verschiedenen Blockiermoden sind:
- Auslese-API blockieren: Alle Webseiten, die nicht auf der Whitelist oder Blacklist gelistet sind, können die <canvas>-API zur Darstellung verwendet werden, aber die Auslese-API darf nicht verwendet werden.
- Auslese-API vortäuschen: Standardeinstellung und mein Favorit! Alle Webseiten, die nicht auf der Whitelist oder Blacklist gelistet sind, können die <canvas>-API zur Darstellung verwendet werden, aber die Auslese-API gibt zufällige Werte zurück, so dass das Fingerprinting immer einen anderen Wert liefert.
+- Bei Ausgabe vortäuschen: Bei der Darstellung von Text werden die beschriebenen Pixel leicht verändert. Dies erschwert die Detektion des Add-ons, aber ist weniger sicher. Bei WebGL-Canvas ist das Verhalten identisch zu "Auslese-API vortäuschen".
- bei Auslese-API um Erlaubnis fragen: Alle Webseiten, die nicht auf der Whitelist oder Blacklist gelistet sind, können die <canvas>-API zur Darstellung verwendet werden, aber der Nutzer wird jedesmal um Erlaubnis gefragt, wenn die Webseite die Readout-API verwenden möchte.
- alles blockieren: Ignoriert alle Listen und blockiert die <canvas>-API auf allen Webseiten.
- nur Einträge der Whitelist erlauben: Nur Seiten, die in der Whitelist gelistet sind, dürfen die <canvas>-API verwenden.
diff --git a/addon description/en/description.txt b/addon description/en/description.txt
index 83bdd9d..25ff69d 100644
--- a/addon description/en/description.txt
+++ b/addon description/en/description.txt
@@ -4,6 +4,7 @@ The different block modes are:
- block readout API: All websites not on the white list or black list can use the <canvas> API to display something on the page, but the readout API is not allowed to return values to the website.
- fake readout API: Canvas Blocker's default setting, and my favorite! All websites not on the white list or black list can use the <canvas> API to display something on the page, but the readout API is forced to return a new random value each time it is called.
+- fake at input: on display of text the drawn pixels get modified slightly. This makes the detection of the add-on harder but is less secure. On WebGL-canvas the behaviour is identical to "fake readout API".
- ask for readout API permission: All websites not on the white list or black list can use the <canvas> API to display something on the page, but the user will be asked if the website should be allowed to use the readout API each time it is called.
- block everything: Ignore all lists and block the <canvas> API on all websites.
- allow only white list: Only websites in the white list are allowed to use the <canvas> API.
diff --git a/locale/de-DE.json b/locale/de-DE.json
index 2cc8471..d3897f4 100644
--- a/locale/de-DE.json
+++ b/locale/de-DE.json
@@ -21,7 +21,7 @@
"blockMode_options.block only black list": "nur Einträge der Blacklist blockieren",
"blockMode_options.block readout API": "Auslese-API blockieren",
"blockMode_options.fake readout API": "Auslese-API vortäuschen",
- "blockMode_options.fake input API": "Eingabe-API vortäuschen",
+ "blockMode_options.fake input API": "Bei Ausgabe vortäuschen",
"blockMode_title": "Blockiermodus",
"maxFakeSize_description": "Canvas, die eine größe Fläche als die hier angegeben Zahl haben, werden nicht vorgetäuscht. (Null eingeben, um es zu deaktivieren.)",
@@ -39,7 +39,7 @@
"enableStackList_title": "Dateispezifische Whitelist verwenden",
"fakedReadout": "Auslese vorgetäuscht auf {url}",
- "fakedInput": "Eingabe vorgetäuscht auf {url}",
+ "fakedInput": "Bei Ausgabe vorgetäuscht auf {url}",
"ignoreList_description": "Domänen oder URLs, bei denen keine Benachrichtigung angezeigt werden. Mehrere Einträge müssen durch ein Komma getrennt werden.",
"ignoreList_title": "Ignorierliste",
diff --git a/locale/en-US.json b/locale/en-US.json
index 59844ce..0900946 100644
--- a/locale/en-US.json
+++ b/locale/en-US.json
@@ -21,7 +21,7 @@
"blockMode_options.block only black list": "block only black list",
"blockMode_options.block readout API": "block readout API",
"blockMode_options.fake readout API": "fake readout API",
- "blockMode_options.fake input API": "fake input API",
+ "blockMode_options.fake input API": "fake at input",
"blockMode_title": "Block mode",
"maxFakeSize_description": "Canvas with a bigger area than this number will not be faked. (Enter zero to disable.)",
@@ -39,7 +39,7 @@
"enableStackList_title": "Use file specific white list",
"fakedReadout": "Faked readout on {url}",
- "fakedInput": "Faked input on {url}",
+ "fakedInput": "Faked at input on {url}",
"ignoreList_description": "Domains or URLs where no notification will be shown. To add multiple entries, separate them by commas.",
"ignoreList_title": "Ignore list",
diff --git a/releaseNotes.txt b/releaseNotes.txt
new file mode 100644
index 0000000..dc0d8d4
--- /dev/null
+++ b/releaseNotes.txt
@@ -0,0 +1,24 @@
+Version 0.3.2:
+ new features:
+ - "fake at input" mode
+ - fake notifications only show up when something is faked
+
+ fixes:
+ - fake notifications did not show always when something was faked
+ - ECMA 2016 compliant
+ - function signature for faked functions could not be read
+
+Version 0.3.1:
+ new features:
+ - added fennec support
+ - faster faking performance
+ - new preferences:
+ * disabling faking in getImageData for big canvas
+ * persistent random number supply
+
+ fixes:
+ - ask for permission failed on prototype
+
+Version 0.3.0:
+ new features:
+ - e10s ready
\ No newline at end of file