summaryrefslogtreecommitdiffstats
path: root/platform/web/javascript_bridge_singleton.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
| | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Add `JavaScriptBridge` buffer methodsAdam Scott2024-09-161-0/+23
|
* StringName Dictionary keysrune-scape2024-08-291-1/+1
| | | | | also added 'is_string()' method to Variant and refactored many String type comparisons to use it instead
* Replace `.bind(...).call_deferred()` with `.call_deferred(...)`A Thousand Ships2024-05-271-1/+1
|
* Fix unsafe uses of `Callable.is_null()`A Thousand Ships2024-04-271-1/+1
| | | | | `Callable.is_null()` is not equivalent to `!Callable.is_valid()` and doesn't guarantee the call is valid.
* Merge pull request #79711 from adamscott/web-non-blocking-main-threadRémi Verschelde2023-10-091-4/+19
|\ | | | | | | Add `proxy_to_pthread` option to `platform=web`
| * Add `proxy_to_pthread` option to `platform=web`Adam Scott2023-10-091-4/+19
| | | | | | | | Co-authored-by: Fabio Alessandrelli <fabio.alessandrelli@gmail.com>
* | Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-10-081-1/+1
|/
* Add vararg call() method to C++ Callablekobewi2023-10-051-5/+2
|
* Merge pull request #82633 from Faless/web/visibility_exposeRémi Verschelde2023-10-021-5/+5
|\ | | | | | | [Web] Fix `dlink_enabled` build
| * [Web] Fix dlink_enabled buildFabio Alessandrelli2023-10-011-5/+5
| | | | | | | | | | | | | | | | After changing the default visibility to hidden to avoid generating thousands of import/export symbols (browsers have a hard limit of 10k), explicitly setting visibility for "boundary functions" (i.e. wasm callbacks called by JS via pointer) is required to ensure the function can be retrieved via pointer from the function table.
* | Fix expected argument count for `Callable` call errorsDanil Alexeev2023-09-291-1/+1
|/
* Style: Harmonize header includes in platform portsRémi Verschelde2023-06-081-1/+3
| | | | | | | | | | | | | | | | This applies our existing style guide, and adds a new rule to that style guide for modular components such as platform ports and modules: Includes from the platform port or module should be included with relative paths (relative to the root folder of the modular component, e.g. `platform/linuxbsd/`), in their own section before Godot's "core" includes. The `api` and `export` subfolders also need to be handled as self-contained (and thus use relative paths for their "local" includes) as they are all compiled for each editor platform, without necessarily having the api/export matching platform folder in the include path. E.g. the Linux editor build will compile `platform/android/{api,export}/*.cpp` and those need to use relative includes for it to work.
* Merge pull request #70626 from Faless/web/4.x_expose_force_fs_syncFabio Alessandrelli2023-01-091-0/+5
|\ | | | | [Web] Expose API to force file system sync.
| * [Web] Expose API to force file system sync.Fabio Alessandrelli2022-12-271-0/+5
| | | | | | | | | | Mostly useful for modules and extensions that can't use FileAccess to write files.
* | One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
|/ | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Rename JavaScript singleton to JavaScriptBridgeGeequlim2022-09-021-0/+366