summaryrefslogtreecommitdiffstats
path: root/core/doc_data.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Implement typed dictionariesThaddeus Crews2024-09-041-0/+6
|
* Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-041-2/+3
| | | | | | | | | Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when accessing a single element) * Removed subscript operator, in favor of a more explicit `get` * Added conversion from `Iterator` to `ConstIterator` * Remade existing operations into other solutions when applicable
* Display `BitField[Enum]` in docs to distinguish from `Enum`Danil Alexeev2023-06-151-0/+2
|
* Dump API docs from inline GDScript comments using --doctool --gdscript-docs PATHDavid Snopek2023-05-081-0/+1
|
* GDScript: Fix issues with typed arraysDmitrii Maganov2023-01-311-2/+10
|
* 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".
* Fix missing method qualifiers in script docXwdit2022-07-241-1/+26
| | | | Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* Implement a BitField hintreduz2022-07-051-2/+2
| | | | Allows to specify the binder that an enum must be treated as a bitfield.
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Replace String comparisons with "", String() to is_empty()Nathan Franke2021-12-091-2/+2
| | | | | | Also: - Adds two stress tests to test_string.h - Changes to .empty() on std::strings
* Implement NativeExtension pointer argumentsreduz2021-08-231-2/+16
| | | | | | | | * Allows calling into native extensions directly with a pointer * Makes it easier to implement some APIs more efficiently * Appears with a "*" in the documentation for the argument. * Implementing the pointer handling is entirely up to the implementation, although the extension API provides some hint. * AudioStream has been implemented as an example, allowing to create NativeExtension based AudioStreams.
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Refactor DocData into core and editor (DocTools) partsThakee Nathees2020-12-021-0/+126