Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-03-22 | Add static method support to ClassDB | reduz | |
* Based on the work done for Variant in the past. * Added `ClassDB::bind_static_method` * Cleaned up ClassDB::bind_method to use variadic templates. This adds support for having static methods in Object derived classes. Note that this does not make it work yet in GDScript or Mono and, while it works for GDExtension, GodotCPP needs to be updated. | |||
2022-02-15 | Add an XML schema for documentation | Hugo Locurcio | |
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. | |||
2021-12-03 | Merge pull request #54833 from KoBeWi/it's_a_trap | Rémi Verschelde | |
2021-12-02 | Improve store_string() description | kobewi | |
2021-11-15 | Replace Godot docs URL with `$DOCS_URL` in XML class reference | Rémi Verschelde | |
2021-10-06 | doc: Update links to latest documentation after content reorganization | Rémi Verschelde | |
2021-09-16 | Merge pull request #49041 from madmiraal/fix-docs-4085 | Max Hilbrunner | |
Clarify that eof_reached() cannot be used to check if more data is available | |||
2021-08-22 | Replace HTTP links with HTTPS for sites with HTTPS versions | Aaron Franke | |
2021-08-04 | Tests: Improve coverage for `File::get_csv_line()` | Rémi Verschelde | |
Adds a few more complex edge cases which are supported. Also adds some documentation, simplifies the code a bit and forbids using double quotes as a delimiter. | |||
2021-07-30 | doc: Use self-closing tags for `return` and `argument` | Rémi Verschelde | |
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. | |||
2021-06-29 | Merge pull request #49470 from levilindsey/master | Rémi Verschelde | |
Update File.store_var description to mention which properties of an object are included. | |||
2021-06-15 | Update File.store_var description to mention which properties of an object ↵ | Levi Lindsey | |
are included. | |||
2021-06-12 | Merge pull request #49123 from aaronfranke/it-is-time | Rémi Verschelde | |
Add a Time singleton | |||
2021-06-11 | Rename Reference to RefCounted | Pedro J. Estébanez | |
2021-06-11 | Add Time singleton | Aaron Franke | |
2021-06-03 | Merge pull request #48889 from Calinou/file-rename-endian-swap | Rémi Verschelde | |
Rename File's `endian_swap` to `big_endian` | |||
2021-05-28 | Clarify that eof_reached() cannot be used to check if more data is available | Marcel Admiraal | |
2021-05-25 | Rename File::get_len() get_length() | Marcel Admiraal | |
2021-05-20 | Rename File's `endian_swap` to `big_endian` | Hugo Locurcio | |
This new name is more consistent with ResourceSaver and StreamPeer. | |||
2021-05-01 | Document that `File.open_compressed()` can only open files saved by Godot | Hugo Locurcio | |
2021-02-13 | Expose a `File.flush()` method to scripting | Hugo Locurcio | |
This can be used to ensure a file has its contents saved even if the project crashes or is killed by the user (among other use cases). See discussion in #29075. | |||
2021-02-02 | Improve the `File.endian_swap` documentation | Hugo Locurcio | |
2020-11-25 | Docs: Port Code Examples to C# (F, G, H, I, J, K, L) | HaSa1002 | |
Includes: * File * Geometry2D * HashingContext * HTTPClient * HTTPRequest * Image * Input * int * ItemList * JSONParseResult * KinematicBody2D * LineEdit Co-authored-by: Aaron Franke <arnfranke@yahoo.com> | |||
2020-10-01 | Link to demos from within the class reference | Aaron Franke | |
2020-10-01 | Clarify store_string vs store_line. | Ryan Roden-Corrent | |
While the behavior can be implied from the name, it seems worth stating it explicitly. | |||
2020-09-24 | Move note about using Resource in the File documentation | skyace65 | |
2020-08-31 | Add link titles for all links in the class reference | Hugo Locurcio | |
This makes them display in a nicer way in the editor help. (The title will display instead of the full URL.) | |||
2020-08-04 | Updated cursor positioning description for File open() | Maganty Rushyendra | |
Added more details about the cursor offsets for the different ModeFlags in the `File` class. | |||
2020-07-31 | Added missing information about File.open_encrypted function to docs. | codetorex | |
2020-07-15 | Mention the Data paths documentation in the File class | Hugo Locurcio | |
This closes https://github.com/godotengine/godot-docs/issues/3799. | |||
2020-06-09 | doc: Make File store/get integer methods clearer | Rémi Verschelde | |
Add an example on how to store signed integers on less than 64 bits, using one bit for the signedness. | |||
2020-03-25 | Improve the `File.store_{8,16,32,64}()` documentation | Danil Alexeev | |
Added information about the intervals of values that the functions `store_{8,16,32,64}()` can correctly write to the file. | |||
2020-02-18 | doc: Sync classref with current source | Rémi Verschelde | |
Handle removal of Pool*Array types and other recent changes. | |||
2020-01-31 | Update docs to version 4.0 | clayjohn | |
2020-01-26 | doc: Drop unused 'category' property from header | Rémi Verschelde | |
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. | |||
2019-06-30 | doc: Add default values to all properties | Rémi Verschelde | |
Thanks to @bojidar-bg's impressive work in #29380. | |||
2019-06-27 | Proofread and improve the whole class reference | Hugo Locurcio | |
- 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 | |||
2019-06-27 | doc: Don't use `GlobalScope` scope in hyperlinks, it's automatically inferred | Rémi Verschelde | |
2019-06-18 | doc: Improve docs for Resource* classes | Rémi Verschelde | |
Also move module-specific classes to their own module's `doc_classes` folder. | |||
2019-04-19 | doc: Drop unused <demos> tag | Rémi Verschelde | |
2019-04-15 | doc: Sync classref with current source | Rémi Verschelde | |
2019-04-06 | Clarify encoding used for text by the File class | shartte | |
2019-04-01 | Merge pull request #27485 from Faless/io/encode_decode_safety_pr | Rémi Verschelde | |
Safer encode/decode variant. | |||
2019-04-01 | Add object encoding param to serialization methods | Fabio Alessandrelli | |
Network peers get_var/put_var File get_var/store_var GDScript/Mono/VisualScript bytes2var/var2bytes Add MultiplayerAPI.allow_object_decoding member which deprecates PacketPeer.allow_object_decoding. Break ABI compatibaility (API compatibility for GDNative). | |||
2019-04-01 | doc: Bump version to 3.2 | Rémi Verschelde | |
2019-02-17 | Clear up eof_reached function, fixes #16919 | Juan Linietsky | |
2019-01-26 | doc: Add caveat for File.file_exists for imported resources | Rémi Verschelde | |
Fixes #25347. | |||
2018-12-20 | doc: Add missing commas after "If true/false" | Rémi Verschelde | |
2018-11-20 | doc: Sync classref with current source | Rémi Verschelde | |
2018-11-16 | Add store_csv_line method for File | Kanabenki | |