summaryrefslogtreecommitdiffstats
path: root/doc/classes/JavaScript.xml
Commit message (Collapse)AuthorAgeFilesLines
* Rename JavaScript singleton to JavaScriptBridgeGeequlim2022-09-021-79/+0
|
* [Web] Rename JavaScript platform to Web.Fabio Alessandrelli2022-08-291-2/+2
| | | | Also rename export name from "HTML5" to "Web".
* [doc] Use "param" instead of "code" to refer to parameters (5)Andy Maloney2022-08-151-6/+6
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-8/+8
|
* Add an XML schema for documentationHugo Locurcio2022-02-151-1/+1
| | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions.
* [HTML5] Implement JavaScript PWA update callbacks.Fabio Alessandrelli2022-02-061-0/+22
| | | | | | Allows detecting when a new version of the progressive web app service worker is waiting (i.e. an update is pending), along a function to force the update and reload all clients.
* Replace Godot docs URL with `$DOCS_URL` in XML class referenceRémi Verschelde2021-11-151-2/+2
|
* doc: Update links to latest documentation after content reorganizationRémi Verschelde2021-10-061-1/+1
|
* Don't generate empty doc sections and reduce code duplicationAaron Franke2021-09-201-2/+0
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-26/+13
| | | | | | | | For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there.
* [HTML5] Add easy to use download API.Fabio Alessandrelli2021-05-211-0/+16
| | | | | New `JavaScript.download_buffer` method to create a prompt that let the user download a file.
* [HTML5] Implement Godot <-> JavaScript interface.Fabio Alessandrelli2021-05-201-0/+27
|
* Document that the JavaScript singleton may be disabled at build-timeHugo Locurcio2020-09-201-0/+1
|
* Add link titles for all links in the class referenceHugo Locurcio2020-08-311-1/+1
| | | | | This makes them display in a nicer way in the editor help. (The title will display instead of the full URL.)
* Update docs to version 4.0clayjohn2020-01-311-1/+1
|
* doc: Drop unused 'category' property from headerRémi Verschelde2020-01-261-1/+1
| | | | | | | | | | We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0.
* Proofread and improve the whole class referenceHugo Locurcio2019-06-271-1/+1
| | | | | | | | | | | | | - Document a few more properties and methods - Add more information to many classes - Fix lots of typos and gramar mistakes - Use [code] tags for parameters consistently - Use [b] and [i] tags consistently - Put "Warning:" and "Note:" on their own line to be more visible, and make them always bold - Tweak formatting in code examples to be more readable - Use double quotes consistently - Add more links to third-party technologies
* doc: Drop unused <demos> tagRémi Verschelde2019-04-191-2/+0
|
* doc: Bump version to 3.2Rémi Verschelde2019-04-011-1/+1
|
* doc: Use HTTPS for docs.godotengine.org and point to latest branchRémi Verschelde2018-11-051-1/+1
| | | | Fixes #23509.
* Add support for tutorial links to makerst.pyrobojumper2018-06-121-1/+1
| | | | Also change the <tutorials> structure to make use of individual <link> tags
* doc: Remove status from hardcoded version stringRémi Verschelde2018-02-271-1/+1
| | | | It has no practical use case and just generates noise for each alpha, beta, etc.
* doc: Update version string in headerRémi Verschelde2018-02-191-1/+1
|
* doc: Fix references to online tutorials after godotengine/godot-docs#1015Rémi Verschelde2018-01-251-1/+1
|
* doc: Sync with current sourceRémi Verschelde2018-01-251-1/+1
| | | | | | Also enhance RigidBody docs as per https://github.com/godotengine/godot-docs/pull/1018 and fix the version tag in all files (not really stable yet, but it makes no sense to hardcode rc3 at this stage).
* Filled tutorial field in most relevent classes.Juan Linietsky2018-01-151-1/+1
| | | | Added tutorial display in doc.
* doc: Update version string in XMLRémi Verschelde2018-01-131-1/+1
|
* doc: Update header version for 3.0-betaRémi Verschelde2017-11-241-1/+1
|
* Facilitate exposing platform-exclusive interfaces to all platformsLeon Krause2017-11-181-0/+30
This makes the interfaces available, without implementation, in other platforms and the editor, which facilitates documenting platform-exclusive classes. Platform-exclusive APIs must be set up in platform/<platform>/api/api.cpp. Provide noop method-implementations where necessary. Also setup and document the HTML5 platform's JavaScript singleton.