Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add a sort method to Dictionary and HashMap | Aaron Franke | 2024-10-02 | 1 | -0/+6 |
| | |||||
* | Bind Array get and set functions | Aaron Franke | 2024-09-26 | 1 | -0/+8 |
| | |||||
* | Implement typed dictionaries | Thaddeus Crews | 2024-09-04 | 1 | -0/+95 |
| | |||||
* | Fix several typos in the documentation | Haoyu Qiu | 2024-08-02 | 1 | -1/+0 |
| | |||||
* | [TextServer, GDExtension] Fix building text servers as GDExtension, expose ↵ | bruvzg | 2024-06-12 | 1 | -0/+8 |
| | | | | new/changed low-level methods to GDExtension API. | ||||
* | Update links to outdated asset library demos | skyace65 | 2024-04-07 | 1 | -2/+2 |
| | | | | | | Update links to outdated asset library demos Co-authored-by: Max Hilbrunner <m.hilbrunner@gmail.com> | ||||
* | Allow returning Dictionary after merging | kobewi | 2024-03-06 | 1 | -0/+18 |
| | |||||
* | Add a `get_or_add` method to Dictionary | Aaron Franke | 2023-12-06 | 1 | -0/+8 |
| | |||||
* | Add an example for `Dictionary.merge()`, mention lack of recursion | Hugo Locurcio | 2023-10-31 | 1 | -0/+36 |
| | |||||
* | Fix many typos in documentation | Septian | 2023-07-19 | 1 | -1/+1 |
| | |||||
* | Doctool: Remove version attribute from XML header | Rémi Verschelde | 2023-07-06 | 1 | -1/+1 |
| | | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb). | ||||
* | Bump version to 4.2-dev | Rémi Verschelde | 2023-07-05 | 1 | -1/+1 |
| | | | | Keep on waitin' | ||||
* | C#: Fix dictionary key lookup documentation | Raul Santos | 2023-06-02 | 1 | -3/+3 |
| | | | | The method to check if a key exists in the dictionary is called `ContainsKey`. | ||||
* | Overhaul the top sections of the class reference (Core classes) | VolTer | 2023-05-19 | 1 | -4/+4 |
| | |||||
* | Remove outdated note about const in Dictionary and Array docs | George Marques | 2023-03-08 | 1 | -1/+0 |
| | |||||
* | Bump version to 4.1-dev | Rémi Verschelde | 2023-03-01 | 1 | -1/+1 |
| | | | | Can't stop, won't stop, they said, huh? | ||||
* | Fix C# examples in documentation | Raul Santos | 2023-01-31 | 1 | -2/+2 |
| | | | | | | | | | | - Fix documentation after C# renames. - Add missing `partial` in C# class declarations. - Change `delta` parameter type to `double` in C#. - Ensure parameters match base declaration. - Use `$` string interpolation in C#. - Fix invalid or outdated C# code. - Changed some examples to follow our style guide more closely. | ||||
* | GDScript: Fix issues with typed arrays | Dmitrii Maganov | 2023-01-31 | 1 | -1/+1 |
| | |||||
* | Fix various typos with codespell | Rémi Verschelde | 2023-01-30 | 1 | -1/+1 |
| | | | | | | And include #72377. Co-authored-by: Wiktor Kocielski <withaust@gmail.com> | ||||
* | GDScript: Fix test for read-only state of constants | Dmitrii Maganov | 2023-01-27 | 1 | -0/+12 |
| | |||||
* | GDScript: Allow constant expressions in annotations | Danil Alexeev | 2023-01-25 | 1 | -1/+1 |
| | |||||
* | Fix typos with codespell | Rémi Verschelde | 2022-12-15 | 1 | -1/+1 |
| | |||||
* | Overhaul Dictionary Documentation | Micky | 2022-12-05 | 1 | -94/+73 |
| | |||||
* | Style: Misc docs and comment style and language fixes | Rémi Verschelde | 2022-11-02 | 1 | -1/+1 |
| | | | | | | | | | | - Removed empty paragraphs in XML. - Consistently use bold style for "Example:", on a new line. - Fix usage of `[code]` when hyperlinks could be used (`[member]`, `[constant]`). - Fix invalid usage of backticks for inline code in BBCode. - Fix some American/British English spelling inconsistencies. - Other minor fixes spotted along the way, including typo fixes with codespell. - Don't specify `@GlobalScope` for `enum` and `constant`. | ||||
* | Fill random docs | kobewi | 2022-10-07 | 1 | -0/+3 |
| | |||||
* | Fix typos in Dictionary.xml | volokh0x | 2022-09-06 | 1 | -2/+2 |
| | |||||
* | Add Dictionary.find_key() | kobewi | 2022-08-16 | 1 | -1/+9 |
| | |||||
* | [doc] Use "param" instead of "code" to refer to parameters (7) | Andy Maloney | 2022-08-12 | 1 | -2/+2 |
| | |||||
* | Rename the argument tag to param in XML documentation | Yuri Sizov | 2022-08-08 | 1 | -12/+12 |
| | |||||
* | Merge pull request #59883 from KoBeWi/merge_this | Rémi Verschelde | 2022-06-06 | 1 | -0/+8 |
|\ | |||||
| * | Add Dictionary.merge() | kobewi | 2022-05-31 | 1 | -0/+8 |
| | | |||||
* | | Fix class name : change "string" to "String" | dtesniere | 2022-05-29 | 1 | -1/+1 |
|/ | | | Change case of "s" letter : "string" does not compile but "String" does (for gdScript) | ||||
* | Remove generating of null comparison operators from documentation | Yuri Roubinsky | 2022-03-14 | 1 | -10/+0 |
| | |||||
* | Add an XML schema for documentation | Hugo Locurcio | 2022-02-15 | 1 | -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. | ||||
* | Clarify identical `hash()` return values due to collisions | Hugo Locurcio | 2022-02-12 | 1 | -1/+2 |
| | |||||
* | Replace Godot docs URL with `$DOCS_URL` in XML class reference | Rémi Verschelde | 2021-11-15 | 1 | -1/+1 |
| | |||||
* | Move the docs for constructors and operators out of methods section | Aaron Franke | 2021-10-29 | 1 | -27/+31 |
| | |||||
* | doc: Update links to latest documentation after content reorganization | Rémi Verschelde | 2021-10-06 | 1 | -1/+1 |
| | |||||
* | Merge pull request #53076 from zacryol/dict-typo-fix | Max Hilbrunner | 2021-09-30 | 1 | -6/+5 |
|\ | | | | | Fix typo with example variable name in Dictionary docs | ||||
| * | Fix typo with example variable name in Dictionary docs, and fix error in C# ↵ | zacryol | 2021-09-26 | 1 | -6/+5 |
| | | | | | | | | example | ||||
* | | Fix doc for Dictionary.erase | Haoyu Qiu | 2021-09-30 | 1 | -1/+2 |
|/ | |||||
* | Don't generate empty doc sections and reduce code duplication | Aaron Franke | 2021-09-20 | 1 | -2/+0 |
| | |||||
* | Allow comparing equality between builtin types and null | George Marques | 2021-09-17 | 1 | -0/+10 |
| | |||||
* | doc: Use self-closing tags for `return` and `argument` | Rémi Verschelde | 2021-07-30 | 1 | -52/+26 |
| | | | | | | | | 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. | ||||
* | class reference proofreading | Paul Joannon | 2021-03-19 | 1 | -2/+2 |
| | |||||
* | doc: Sync classref with current source | Rémi Verschelde | 2021-03-18 | 1 | -9/+9 |
| | | | | And move GLTF docs to its module folder. | ||||
* | doc: Sync classref with current source | Rémi Verschelde | 2021-01-04 | 1 | -7/+7 |
| | |||||
* | Rename empty() to is_empty() | Marcel Admiraal | 2020-12-28 | 1 | -1/+1 |
| | |||||
* | Improve the Dictionary class documentation | Hugo Locurcio | 2020-11-14 | 1 | -33/+45 |
| | | | | | | | | | - Mention Lua-style syntax. - Make the code samples self-contained. - Mention caveat with `const` (also in Array). - Clarify the description of `size()`. This closes https://github.com/godotengine/godot-docs/issues/4272. | ||||
* | doc: Sync classref to add operators after #43419 | Rémi Verschelde | 2020-11-10 | 1 | -2/+26 |
| |