summaryrefslogtreecommitdiffstats
path: root/platform/web/js/engine/config.js
Commit message (Collapse)AuthorAgeFilesLines
* Rebrand Godot 4.3 to RedotTrashguy2024-10-131-1/+1
|
* Fix AudioStreamPlayer get_playback_position() for web buildYahkub-R2024-09-161-0/+2
| | | | (cherry picked from commit bcd776e44174677f1995a49b697f9651f1f692ec)
* [Web] Use the module config to preload GDExtension libraries.Fabio Alessandrelli2024-06-141-1/+4
| | | | | | | | | Instead of calling loadDynamicLibraries ourselves, we add the GDExtension libraries to preload to the "dynamicLibraries" module config property. This seems to fix some threading issue with some browsers during the init phase.
* Fix various typos with codespellRémi Verschelde2024-02-071-1/+1
| | | | | | | | | | | Using 2.2.7.dev115+g0eb441d6. Had to add `cancelled` to the ignore list, as it's a Wayland signal which we're handling in our code, so we don't want codespell to fix that "typo". Also includes the typo fix from #87927. Co-authored-by: Divyanshu Shekhar <61140213+divshekhar@users.noreply.github.com>
* [Web] Improve emscripten "locateFile" glue.Fabio Alessandrelli2023-10-111-1/+3
| | | | | Be more selective on what we rewrite, since in recent emscripten versions loading dynamic libraries relies on it.
* Rename all gdnative occurences to gdextensionGilles Roudière2022-12-121-2/+2
| | | | | | | | | | | | | Non-exhaustive list of case-sensitive renames: GDExtension -> GDNative GDNATIVE -> GDEXTENSION gdextension -> gdnative ExtensionExtension ->Extension (for where there was GDNativeExtension) EXTENSION_EXTENSION ->EXTENSION (for where there was GDNATIVE_EXTENSION) gdnlib -> gdextension gdn_interface -> gde_interface gdni -> gde_interface
* [Web] Improve Godot shutdown and cleanup.Fabio Alessandrelli2022-11-051-1/+1
|
* [Web] Small fixes and enhancements.Fabio Alessandrelli2022-09-111-1/+2
| | | | | | | | | | - "Definitive" fix for ENOENT randomly disappearing from emscripten. - Proper shutdown when setup fails. - Re-enable WebGL explicit buffer swap. - Re-enable optional per-pixel transparency. - Add type cast to make closure compiler happy. - Remove emscripten Safari WebGL workaround. - Improve AudioWorklet cleanup.
* [Web] Rename JavaScript platform to Web.Fabio Alessandrelli2022-08-291-0/+358
Also rename export name from "HTML5" to "Web".