1. 20 Aug, 2018 7 commits
  2. 17 Aug, 2018 1 commit
  3. 16 Aug, 2018 3 commits
  4. 09 Aug, 2018 4 commits
  5. 07 Aug, 2018 3 commits
  6. 06 Aug, 2018 14 commits
  7. 03 Aug, 2018 5 commits
  8. 30 Jul, 2018 1 commit
  9. 26 Jul, 2018 2 commits
    • 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
    • Michael Droettboom's avatar
      Merge pull request #94 from rth/skip-compile-and-configure · 38f839df
      Michael Droettboom authored
      Skip compile and configure cases during numpy build
      38f839df