Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Better format arguments in variant parser | Michael Alexsander Silva Dias | 2021-06-18 | 1 | -3/+3 |
| | |||||
* | class reference proofreading | Paul Joannon | 2021-03-19 | 1 | -1/+1 |
| | |||||
* | Unify URI encoding/decoding and add to C# | Aaron Franke | 2021-01-28 | 1 | -1/+1 |
| | | | | http_escape and percent_encode have been unified into uri_encode, and http_unescape and percent_decode have been unified into uri_decode. | ||||
* | Docs: Port Code Examples to C# (F, G, H, I, J, K, L) | HaSa1002 | 2020-11-25 | 1 | -4/+88 |
| | | | | | | | | | | | | | | | | | | Includes: * File * Geometry2D * HashingContext * HTTPClient * HTTPRequest * Image * Input * int * ItemList * JSONParseResult * KinematicBody2D * LineEdit Co-authored-by: Aaron Franke <arnfranke@yahoo.com> | ||||
* | Merge pull request #42896 from Calinou/httprequest-increase-chunk-size | Rémi Verschelde | 2020-11-07 | 1 | -2/+2 |
|\ | | | | | Increase the default HTTPClient download chunk size to 64 KiB | ||||
| * | Increase the default HTTPClient download chunk size to 64 KiB | Hugo Locurcio | 2020-11-07 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | This improves download speeds at the cost of increased memory usage. This change also effects HTTPRequest automatically. See #32807 and #33862. | ||||
* | | Merge pull request #42870 from Calinou/doc-httprequest-tls-version | Rémi Verschelde | 2020-11-06 | 1 | -4/+2 |
|\ \ | | | | | | | Document the supported TLS versions in HTTPRequest | ||||
| * | | Document the supported TLS versions in HTTPRequest | Hugo Locurcio | 2020-10-17 | 1 | -4/+2 |
| |/ | | | | | | | See #42857. | ||||
* / | Fix a variable being redeclared in the HTTPRequest code sample | Hugo Locurcio | 2020-10-31 | 1 | -1/+1 |
|/ | |||||
* | Fix typos with codespell | Rémi Verschelde | 2020-09-18 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using codespell 1.17.1. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear dof doubleclick fave findn leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ``` | ||||
* | doc: Sync classref with current source | Rémi Verschelde | 2020-09-11 | 1 | -12/+14 |
| | | | | Bind missing enums. | ||||
* | HTTPRequest now accepts gzip | Adam Brown | 2020-09-02 | 1 | -1/+30 |
| | | | | | | | | | | Added request_raw to HttpRequest Added decompress_dynamic to Compression class Added decompress_dynamic to BytePoolArray Merge doc fix revert | ||||
* | Add link titles for all links in the class reference | Hugo Locurcio | 2020-08-31 | 1 | -2/+2 |
| | | | | | This makes them display in a nicer way in the editor help. (The title will display instead of the full URL.) | ||||
* | Document HTTPRequest not supporting request data with GET method | Hugo Locurcio | 2020-08-03 | 1 | -0/+1 |
| | | | | | | | This also improves the HTTPClient class documentation to be easier to read and more informative. This closes #40564. | ||||
* | Document HTML5 CORS restrictions in HTTPClient and HTTPRequest | Hugo Locurcio | 2020-07-20 | 1 | -0/+1 |
| | | | | See https://github.com/godotengine/godot/issues/40247. | ||||
* | Add a POST request example to the HTTPRequest class documentation | Hugo Locurcio | 2020-07-10 | 1 | -1/+9 |
| | |||||
* | doc: Sync classref with current source | Rémi Verschelde | 2020-02-18 | 1 | -3/+3 |
| | | | | Handle removal of Pool*Array types and other recent changes. | ||||
* | Update docs to version 4.0 | clayjohn | 2020-01-31 | 1 | -1/+1 |
| | |||||
* | doc: Drop unused 'category' property from header | Rémi Verschelde | 2020-01-26 | 1 | -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. | ||||
* | doc: Misc updates for AnimationNode* and others | Rémi Verschelde | 2020-01-23 | 1 | -1/+1 |
| | | | | | | | | | | | | | - Add some missing descriptions. - Add links to tutorials for ARVR and AnimationTree. - Style fixes. - Engine changes: * Make `AnimationNodeTransition.input_<number>` properties internal so that they don't appear in the docs. They still appear in the inspector based on the actual number of inputs requested. * Drop unimplemented `CPUParticles.flatness`. It's only used for 3D particles in `ParticlesMaterial`, and thus only relevant for `CPUParticles3D`. | ||||
* | Add an example of using HTTPRequest to contact a REST API | Hugo Locurcio | 2019-12-24 | 1 | -0/+21 |
| | | | | | We already had an example to download and display an image, but having another example dedicated to REST APIs doesn't hurt. | ||||
* | doc: Markup fixes for enums and constants | Rémi Verschelde | 2019-12-06 | 1 | -1/+1 |
| | |||||
* | Add download_chunk_size property to HTTPRequest. | Fabio Alessandrelli | 2019-11-24 | 1 | -0/+4 |
| | | | | | | This allows setting the `read_chunk_size` of the internal HTTPClient. This is important to reduce the allocation overhead and number of file writes when downloading large files, allowing for better download speed. | ||||
* | Add an HTTPRequest usage example to the class reference | Hugo Locurcio | 2019-11-07 | 1 | -1/+31 |
| | | | | This also adds a link to the "Making HTTP requests" tutorial. | ||||
* | Mention body length getter caveats in HTTPClient and HTTPRequest | Hugo Locurcio | 2019-10-22 | 1 | -0/+1 |
| | |||||
* | doc: Sync classref with current source | Rémi Verschelde | 2019-07-10 | 1 | -0/+4 |
| | |||||
* | doc: Add default values to all properties | Rémi Verschelde | 2019-06-30 | 1 | -4/+4 |
| | | | | Thanks to @bojidar-bg's impressive work in #29380. | ||||
* | Proofread and improve the whole class reference | Hugo Locurcio | 2019-06-27 | 1 | -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: Don't use `GlobalScope` scope in hyperlinks, it's automatically inferred | Rémi Verschelde | 2019-06-27 | 1 | -1/+1 |
| | |||||
* | doc: Replace all [code]CONSTANT[/code] by new [constant CONSTANT] hyperlinks | Rémi Verschelde | 2019-06-27 | 1 | -1/+1 |
| | |||||
* | doc: Drop unused <demos> tag | Rémi Verschelde | 2019-04-19 | 1 | -2/+0 |
| | |||||
* | doc: Bump version to 3.2 | Rémi Verschelde | 2019-04-01 | 1 | -1/+1 |
| | |||||
* | doc: Fix references to setters and misc formatting | Rémi Verschelde | 2018-12-29 | 1 | -4/+4 |
| | |||||
* | doc: Add missing commas after "If true/false" | Rémi Verschelde | 2018-12-20 | 1 | -1/+1 |
| | |||||
* | doc: Use HTTPS for docs.godotengine.org and point to latest branch | Rémi Verschelde | 2018-11-05 | 1 | -1/+1 |
| | | | | Fixes #23509. | ||||
* | Add support for tutorial links to makerst.py | robojumper | 2018-06-12 | 1 | -1/+1 |
| | | | | Also change the <tutorials> structure to make use of individual <link> tags | ||||
* | [DOCS] add HTTPRequest.request return values | Poommetee Ketson | 2018-04-20 | 1 | -0/+2 |
| | |||||
* | doc: Remove status from hardcoded version string | Rémi Verschelde | 2018-02-27 | 1 | -1/+1 |
| | | | | It has no practical use case and just generates noise for each alpha, beta, etc. | ||||
* | doc: Update version string in header | Rémi Verschelde | 2018-02-19 | 1 | -1/+1 |
| | |||||
* | doc: Fix references to online tutorials after godotengine/godot-docs#1015 | Rémi Verschelde | 2018-01-25 | 1 | -1/+1 |
| | |||||
* | doc: Sync with current source | Rémi Verschelde | 2018-01-25 | 1 | -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). | ||||
* | doc: Replace some more "val" with "value" + sync | Rémi Verschelde | 2018-01-17 | 1 | -1/+1 |
| | |||||
* | Filled tutorial field in most relevent classes. | Juan Linietsky | 2018-01-15 | 1 | -0/+1 |
| | | | | Added tutorial display in doc. | ||||
* | doc: Update version string in XML | Rémi Verschelde | 2018-01-13 | 1 | -1/+1 |
| | |||||
* | Update docs | Bojidar Marinov | 2018-01-12 | 1 | -16/+3 |
| | | | | [ci skip] | ||||
* | [DOCS] HTTPClient & HTTPRequest | mhilbrunner | 2017-12-10 | 1 | -10/+13 |
| | |||||
* | doc: Fix enum tags thanks to 2bc6db6 | Rémi Verschelde | 2017-11-24 | 1 | -12/+12 |
| | |||||
* | doc: Remove setters and getters now exposed via properties/members | Rémi Verschelde | 2017-11-24 | 1 | -48/+0 |
| | |||||
* | doc: Update header version for 3.0-beta | Rémi Verschelde | 2017-11-24 | 1 | -1/+1 |
| | |||||
* | doc: Remove revision.module_config from version string | Rémi Verschelde | 2017-11-15 | 1 | -1/+1 |
| | | | | | It is now "3.0-alpha" instead of "3.0.alpha.custom_build{,.mono}", limits unnecessary diffs. |