Browse Source

docs update

sanex3339 8 years ago
parent
commit
2d02b6808e
2 changed files with 4 additions and 2 deletions
  1. 3 1
      CHANGELOG.md
  2. 1 1
      README.md

+ 3 - 1
CHANGELOG.md

@@ -3,8 +3,10 @@ Change Log
 
 v0.8.0
 ---
-* **Breaking options change:** `encodeUnicodeArray` has been renamed to `unicodeArrayEncoding` and now accepts following values: `true|false|'base64'|'rc4`.
+* **Breaking options change:** `encodeUnicodeArray` has been renamed to `unicodeArrayEncoding` and now accepts following values: `true|false|'base64'|'rc4'`.
 * **Breaking change:** option `wrapUnicodeArrayCalls` was removed and now all calls to `unicodeArray` are always wrapped by special wrapper function.
+* Custom nodes like `selfDefendingNode` or `consoleOutputNode` now inserted into deepest stack trace function call.
+* Rewrite of many custom nodes.
 
 v0.7.1
 ---

+ 1 - 1
README.md

@@ -281,7 +281,7 @@ Available values:
 * `true` (`boolean`): encode `unicodeArray` values using `base64`
 * `false` (`boolean`): don't encode `unicodeArray` values
 * `'base64'` (`string`): encode `unicodeArray` values using `base64`
-* `'rc4'` (`string`): encode `unicodeArray` values using `rc4`. **Much slower then `base64`!**
+* `'rc4'` (`string`): encode `unicodeArray` values using `rc4`. **About 30-35% slower then `base64`, but more harder to get initial values**
     
 ### `unicodeArrayThreshold`
 Type: `number` Default: `0.8` Min: `0` Max: `1`