aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-06-11Merge pull request #2424 from gsathya/fix_append_bugAlon Zakai
Fix append bug
2014-06-11add test case for checking file appendSathyanarayanan Gunasekaran
2014-06-11add myself to AUTHORSSathyanarayanan Gunasekaran
2014-06-11change value of position after seekingSathyanarayanan Gunasekaran
2014-06-11add sqlite speed testAlon Zakai
2014-06-11add test for d2768d2eeAlon Zakai
2014-06-11fix bug introduced in 92cab32f5f where we ignore the current offset in a ↵Alon Zakai
file when writing initial data to it
2014-06-11LIBRARY_DEBUG fixAlon Zakai
2014-06-11DETERMINISTIC optionAlon Zakai
2014-06-11Hide false warnings in 'ffdb.py install --run --log' if app was not ↵Jukka Jylänki
installed or running before.
2014-06-11Improve Ctrl-C exception detection to cover the whole ffdb.py app.Jukka Jylänki
2014-06-11Merge pull request #2417 from juj/emscripten_SDL_SetEventHandlerjuj
Emscripten sdl set event handler
2014-06-10Merge pull request #2412 from juj/test_js_libraries_in_coreAlon Zakai
Test js libraries in core
2014-06-10We don't seem to have tests for --js-library in core suite, so move ↵Jukka Jylänki
other.test_js_libraries to the core test suite so that it gets tested in all modes.
2014-06-10Add support for printing out a memory summary of a running application with ↵Jukka Jylänki
ffdb via 'ffdb.py memory <app>'.
2014-06-10Add support for printing FFOS device system description fields (deviceActor ↵Jukka Jylänki
getDescription verb) with 'ffdb.py desc'
2014-06-10Fix ffdb issue when taking a screenshot and the screenshot is small enough ↵Jukka Jylänki
to fit into a single message instead of having multiple fragments.
2014-06-09Merge pull request #2406 from juj/typedarray_memfsAlon Zakai
Typedarray memfs
2014-06-10Add test for emscripten_SDL_SetEventHandler.Jukka Jylänki
2014-06-10Rename SDL_SetEventHandler from previous commit to ↵Jukka Jylänki
emscripten_SDL_SetEventHandler to reflect that this is our extension, and add comments.
2014-06-10Added an additional call: `SDL_SetEventHandler()` to SDL.Michael Bishop
This is not in the official API but it is needed for Mozilla Persona, which makes sure an event handler is on the stack when `navigator.id.request()` is called. Using the standard SDL api, this can never be the case because an SDL app retrieves events from SDL’s event queue independently of when those events are added to the queue (through event handlers that SDL itself registers). With this additional call, apps can receive events directly in response to an actual event handler which will still be on the stack when the event is handled by the SDL-based application.
2014-06-09do not modify textual memory initializer when emitting source maps, as it ↵Alon Zakai
messes up line numbers; fixes #2410
2014-06-10Fix message queueing issue in ffdb.py which could discard log messages if ↵Jukka Jylänki
the app was spamming a lot of them.
2014-06-09Merge pull request #2416 from coolwanglu/minor_cleanAlon Zakai
Minor clean
2014-06-09minor cleanLu Wang
2014-06-09fix memcpy for ta0 and ta1Alon Zakai
2014-06-09apply library synonyms using wrapper functions, to avoid needing hacks in ↵1.19.2Alon Zakai
the compiler ; 1.19.2
2014-06-09fix environ circularityAlon Zakai
2014-06-09Add support for passing --run command to ffdb install&launch when a packaged ↵Jukka Jylänki
app .zip file is passed.
2014-06-09Add options --run and --log to ffdb launch and install commands for conveniency.Jukka Jylänki
2014-06-09Merge pull request #2399 from waywardmonkeys/cleanup-includesAlon Zakai
Cleanup includes
2014-06-09Improve error message that is shown in ffdb when DevTools is not enabled on ↵Jukka Jylänki
a FFOS device.
2014-06-09Add a nicer quit message when pressing Ctrl-C to abort an operation in ffdb.Jukka Jylänki
2014-06-09Improved error messages printed from tools/ffdb.py. Added new commands ↵Jukka Jylänki
'get', 'set', 'unset', 'hide-prompt' and 'restore-prompt' to ffdb.
2014-06-08show an error on NO_DYNAMIC_EXECUTION with embindAlon Zakai
2014-06-07On Windows, properly clean up temporary .rsp response file used during the ↵Jukka Jylänki
build after finished so the C:\Users\clb\AppData\Local\Temp directory doesn't litter up with .rsp files.
2014-06-07Put a placeholder README in system/local/include.Bruce Mitchener
This explains the purpose so that the directory is a bit more discoverable. It also means the compiler won't complain that the directory doesn't exist when in verbose mode.
2014-06-07Remove non-existing include paths.Bruce Mitchener
2014-06-06recurse on deps_info.json, and remove workaround we needed without thatAlon Zakai
2014-06-06Merge pull request #2403 from guillaumeblanc/incomingAlon Zakai
Fixes glfwGetProcAddress calls that were causing a ReferenceError except...
2014-06-06Merge pull request #2409 from Daft-Freak/preloaded_image_dataAlon Zakai
Add emscripten_get_preloaded_image_data
2014-06-06add testCharlie Birks
2014-06-06path should be constCharlie Birks
2014-06-06fix relative pathsCharlie Birks
2014-06-06Adds unit test for glfwGetProcAddress.Guillaume Blanc
2014-06-06Add options --host, --port, --verbose and --simulator to tools/ffdb.pyJukka Jylänki
2014-06-06Remember to free up resources used by Devtools connection for ffdb ↵Jukka Jylänki
screenshot capture. Report out captured image dimensions for better error detection.
2014-06-06Add support to tools/ffdb.py to take a screenshot of the FFOS device screen.Jukka Jylänki
2014-06-06Add support to tools/ffdb.py to perform B2G 2.0 bulk data transfers for ↵Jukka Jylänki
binary data uploads. Gives about 4MB/sec data uploads as opposed to ~350KB/sec on old B2G 1.4 devices.
2014-06-06Fix issue in tools/ffdb.py where installing an app using a relative path ↵Jukka Jylänki
would place the files in wrong directory inside the zip file, causing the install to fail after upload is finished.