Changes for version 0.06 - 2016-02-28
- commit 4f385f36aaea9ef917673835deda9a354f174aad Author: Kang-min Liu <gugod@gugod.org> Date: Thu Feb 25 12:58:11 2016 +0100
- Fix encode() method mis-implementation.
- The ChromeLogger tech spec:
- https://craig.is/writing/chrome-logger/techspecs
- ... specified the base64 encoded result must contain no newline characters:
- final_data = utf8_data.encode('base64').replace('\n', '')
- The newline should be *removed* instead of being replaced by a pair of single quotes.