| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| |
| | |
adamscott/add-editor-ensure-crossorigin-isolation-headers
[Web] Ensure editor crossorigin isolation headers
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | | |
thedinosoar/fix/service-worker-sandbox-error-98068
[Web] Fix PWA callback assignment causing crash in sandboxed iframes
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
Remove deprecated worker.js file
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Move the Web Editor plugin files to an editor sub-folder inside the
platform folder.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Update JavaScript/Java plugins to solve known vulnerabilities
|
| |/ / /
| | | |
| | | |
| | | | |
Done using the Snyk tool.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
They are not supported anyway, emscripten has an emulation layer that
implements them over WebSocket/WebRTC, which is really surprising for
users, and also not very useful since we have proper WebSocket and
WebRTC support.
This can make the build smaller, if we also disable the UPNP module
(which will otherwise include a third party library referencing "socket"
thus forcing emscripten to include the compatibility layer)
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
[Web] Fix issue where focus timer would throw continuously
|
| | | | | |
|
| | |_|/
| |/| | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Display project settings splash color on web export
|
| | |_|/
| |/| | |
|
|\ \ \ \
| |_|_|/
|/| | |
| | | | |
Fix miscellaneous oddities around the class reference
|
| | | | |
|
| |_|/
|/| | |
|
|\ \ \
| | | |
| | | |
| | | | |
[Android] Implement native file picker support
|
| | | |
| | | |
| | | |
| | | | |
and `options`
|
|/ / /
| | |
| | |
| | | |
Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
|
|\ \ \
| | | |
| | | |
| | | | |
Build System: Extract `validate_arch` helper functions
|
| | |/
| |/|
| | |
| | | |
Signed-off-by: Yevhen Babiichuk (DustDFG) <dfgdust@gmail.com>
|
|\ \ \
| |/ /
|/| |
| | | |
Fix GodotFetch glue code for null response bodies
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The spec says that Response.body can be null (in the event of requests that should have no body, like HEAD requests) and Firefox adheres to it which results in request failure for HEAD requests on Firefox for web exports.
This commit addresses that by treating a null body as an "empty" body (without using a polyfill) and avoids changing the request lifecycle as much as possible.
PR review changes:
- Use == instead of strict ===
- Do not use ?? null
- Comment formatting
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
[Web] Update minimum requirements for emscripten to 3.1.62
|
| | | | |
|
|/ / / |
|
| | | |
|
| | |
| | |
| | |
| | | |
Co-authored-by: Tomasz Chabora <kobewi4e@gmail.com>
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
StringName Dictionary keys
|
| | | |
| | | |
| | | |
| | | |
| | | | |
also added 'is_string()' method to Variant
and refactored many String type comparisons to use it instead
|
|/ / / |
|
| | |
| | |
| | |
| | |
| | |
| | | |
Update the export logic to enable apk generation and signing for Android editor builds
Note: Only legacy builds are supported. Gradle builds are not supported at this point in time.
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | | |
Daylily-Zeleen/daylily-zeleen/optionally_postinitialization_for_extension_owner
Allow ClassDB to create a Object without postinitialization for GDExtension.
|
| | | | |
|
|/ / / |
|
|\ \ \
| |_|/
|/| |
| | | |
[Web] Fix browser opening too early with `serve.py`
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
Fix AudioStreamPlayer `get_playback_position()` for web build
|
| | | | |
|
| |_|/
|/| |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Fixes #81758
DisplayServerWeb::process_joypads handles buttons 6 and 7 of the
HTML5 Standard Gamepad as a special case by doing:
`input->joy_axis(idx, (JoyAxis)b, s_btns[b]);`
This doesn't work because there is no JoyAxis 6 or 7 in the enum
To fix this we use JoyAxis::TRIGGER_LEFT and TRIGGER_RIGHT for button 6
and 7
However since we are now lying to input->joy_axis we also need to lie in
the mappings for the standard gamepad in godotcontrollersdb.txt,
otherwise input->joy_axis will try to find a mapping to axis 4(LT) and
axis 5(RT) that's not defined.
Therefore we set lefttrigger to +a4 and righttrigger to +a5 in the
mapping, to match what we are actually sending.
A cleaner, and more involved fix to this would be modifying
input->joy_button so that it can handle analog buttons and map them to
axes preserving their value instead of converting to boolean
|
| | | |
|
| |/
|/| |
|
| |
| |
| |
| | |
Also fixes some JSDoc annotations in GodotAudio
|
| |
| |
| |
| |
| |
| | |
The offending symbol gets stripped away by wasm-dce but it's used on the
JavaScript side and causes and undefined symbol which also causes the
closure compiler to throw an error.
|