1. 21 Aug, 2018 1 commit
  2. 20 Aug, 2018 7 commits
  3. 17 Aug, 2018 1 commit
  4. 16 Aug, 2018 3 commits
  5. 09 Aug, 2018 4 commits
  6. 07 Aug, 2018 3 commits
  7. 06 Aug, 2018 14 commits
  8. 03 Aug, 2018 5 commits
  9. 30 Jul, 2018 1 commit
  10. 26 Jul, 2018 1 commit
    • Michael Droettboom's avatar
      Fix #93 by avoiding use of TextDecoder · a07b6f39
      Michael Droettboom authored
      Any use of TextDecoder on a part of the Wasm HEAP seems to cause crashes
      when using WebAssembly.instantiate later on (in Chrome).
      
      The fix is to:
      
      - Avoid use of TextDecoder in emscripten-generated code by setting
        -s TEXTDECODER=0
      - Do the Python-to-JS string conversion a different way:
      
        - Handle the native format of a Python Unicode string (which is either UCS1,
          UCS 2 or UCS 4) directly.  This has the added advantage of being
          computationally simpler than encoding/decoding to/from UTF8.
      a07b6f39