Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-03-30 | Merge pull request #328 from ehsan/ogre_upstream | Alon Zakai | |
Upstream the work I did for porting Ogre | |||
2012-03-29 | basic support for -M and -MM | Alon Zakai | |
2012-03-29 | bundle preloaded files also when not compressing them | Alon Zakai | |
2012-03-29 | update test_emcc | Alon Zakai | |
2012-03-28 | add testcase for issue 324 | Alon Zakai | |
2012-03-28 | do not use impure stuff for stdin etc, it makes comparing to native builds ↵ | Alon Zakai | |
harder | |||
2012-03-28 | Implement isdigit_l and isxdigit_l | Ehsan Akhgari | |
We ignore the locales for now | |||
2012-03-28 | rename alloca/stack tests | Alon Zakai | |
2012-03-27 | do not use blob constructor if not present, and closure workaround | Alon Zakai | |
2012-03-27 | support wav and mp3 audio suffixes too | Alon Zakai | |
2012-03-27 | support for playing audio chunks through SDL mix | Alon Zakai | |
2012-03-26 | compress all data files into one big file | Alon Zakai | |
2012-03-24 | properly match SDL mousebuttons to DOM buttons | Alon Zakai | |
2012-03-24 | make mouse events relative to canvas, and at right frequency | Alon Zakai | |
2012-03-24 | SDL mouse support and emscripten_set_main_loop | Alon Zakai | |
2012-03-23 | SDL_SizeText and some refactoring | Alon Zakai | |
2012-03-23 | optimize SDL_FillRect | Alon Zakai | |
2012-03-23 | fix sdl keyboard input and add a test | Alon Zakai | |
2012-03-23 | minimal support for SDL text rendering | Alon Zakai | |
2012-03-23 | improve sdl image test to include blits of nonequal size surfaces | Alon Zakai | |
2012-03-23 | rename some tests | Alon Zakai | |
2012-03-22 | do preRun and postRun only if we actually run | Alon Zakai | |
2012-03-21 | fix some bugs with preloading of entire directories | Alon Zakai | |
2012-03-20 | fix breakage with calling LLVM_AR with python | Alon Zakai | |
2012-03-20 | Merge pull request #312 from SiggyBar/incoming | Alon Zakai | |
Misc fixes for Windows. | |||
2012-03-20 | avoid stack explosion in ccall | Alon Zakai | |
2012-03-20 | Misc fixes for Windows. | Sigmund Vik | |
Most of these changes have to do with how python scripts are invoked. For Linux, 'Popen([EMCC] + args)' works because the first line in emcc is '#!/usr/bin/env python'. On Windows, the python interpreter has to be explicitly invoked, e.g. 'Popen(['python', EMCC] + args)'. Note that there is no harm in explicitly invoking the python interpreter on Linux, so this works on both platforms. For Windows, execvp() behaves differently than on Linux: http://mail.python.org/pipermail/python-list/2002-July/763863.html http://msdn.microsoft.com/en-us/library/3xw6zy53.aspx This causes many strange things to happen as the parent process terminated before its children. In this change the use of execvp() has been replaced with subprocess.call(). This change also fixes some code that assumed that the path separator always is '/', but for Windows it is '\'. And where the path module can be required, we use path.normalize() and path.resolve() to check if a filename is absolute in a platform agnostic manner. | |||
2012-03-19 | fix test_emcc_multifile | Alon Zakai | |
2012-03-19 | remove .compress if the compress wasn't worth it | Alon Zakai | |
2012-03-19 | fix test_poppler | Alon Zakai | |
2012-03-19 | refactor use of this[..] in shell.js to use Module[..] | Alon Zakai | |
2012-03-17 | fix test_emcc_compressed_file | Alon Zakai | |
2012-03-17 | complete test for image compression | Alon Zakai | |
2012-03-17 | fix bug with compressed images | Alon Zakai | |
2012-03-17 | unify data and image file preloading | Alon Zakai | |
2012-03-16 | preload/embed file compression option in emcc | Alon Zakai | |
2012-03-16 | source code compression option in emcc | Alon Zakai | |
2012-03-16 | allow preloading/embedding of entire directories using emcc | Alon Zakai | |
2012-03-15 | preload images for SDL | Alon Zakai | |
2012-03-15 | almost working SDL_image test, just need async decoding | Alon Zakai | |
2012-03-15 | support files in directories in --embed-file and --preload-file | Alon Zakai | |
2012-03-15 | html tests refactoring | Alon Zakai | |
2012-03-15 | add file preloading in browsers | Alon Zakai | |
2012-03-15 | improve test runner http server to handle timeouts | Alon Zakai | |
2012-03-15 | refactor html tests | Alon Zakai | |
2012-03-14 | support c strings as parameters in bindings generator | Alon Zakai | |
2012-03-11 | fix test_files_m for s_x_x | Alon Zakai | |
2012-03-10 | fix test_iostream | Alon Zakai | |
2012-03-10 | properly implement isatty | Alon Zakai | |
2012-03-10 | allow Module.stdin,out,err to provide defaults for streams | Alon Zakai | |