Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-03-31 | Fixing some of my own typos... | nova++ | |
(and a little improvement to wording that was bugging me) | |||
2022-03-26 | doc: Fix String.rsplit code example | Rémi Verschelde | |
Fixes #36898. Supersedes and closes #36951. | |||
2022-03-17 | Unify TextServer built-in module and GDExtension code. | bruvzg | |
2022-03-14 | Remove generating of null comparison operators from documentation | Yuri Roubinsky | |
2022-02-23 | Added or improved documentation to a few more String methods | Nova | |
2022-02-22 | Document String's humanize_size static method | Nova | |
2022-02-21 | Update doc for match: empty argument doesn't match anything | Markus Sauermann | |
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. | |||
2022-02-12 | Clarify identical `hash()` return values due to collisions | Hugo Locurcio | |
2022-02-08 | [GDExtension] Add binds for missing methods, operators, and constants ↵ | bruvzg | |
required for GDExtension TextServer implementation. | |||
2022-02-04 | String: Add contains(). | Anilforextra | |
2022-01-26 | Rename String::is_subsequence_ofi to String::is_subsequence_ofn | Wilson E. Alvarez | |
2022-01-17 | Clarify to_float() and to_int() methods | kobewi | |
2022-01-02 | Fix usage of "Return" in the docs | kobewi | |
2021-12-16 | Make `--doctool` locale aware | Haoyu Qiu | |
* Adds `indent(str)` to `String`: * Indent the (multiline) string with the given indentation. * This method is added in order to keep the translated XML correctly indented. * Moves the loading of tool/doc translation into `editor/editor_translation.{h,cpp}`. * This will be used from both `EditorSettings` and the doc tool from `main`. * Makes use of doc translation when generating XML class references, and setup the translation locale based on `-l LOCALE` CLI parameter. The XML class reference won't be translated if `-l LOCALE` parameter is not given, or when it's `-l en`. | |||
2021-11-15 | Replace Godot docs URL with `$DOCS_URL` in XML class reference | Rémi Verschelde | |
2021-11-02 | Merge pull request #54453 from KoBeWi/slice_of_string | Rémi Verschelde | |
2021-11-02 | Expose String.get_slice | kobewi | |
2021-10-29 | Move the docs for constructors and operators out of methods section | Aaron Franke | |
2021-10-22 | Fix `bin_to_int` documentation examples | Raul Santos | |
The `bin_to_int` method uses the `0b` prefix. | |||
2021-10-06 | doc: Update links to latest documentation after content reorganization | Rémi Verschelde | |
2021-09-20 | Don't generate empty doc sections and reduce code duplication | Aaron Franke | |
2021-09-17 | Allow indexing of String values in scripting languages | George Marques | |
2021-09-17 | Allow comparing equality between builtin types and null | George Marques | |
2021-08-29 | Rename String::is_rel_path to String::is_relative_path | Wilson E. Alvarez | |
2021-08-24 | Merge pull request #52041 from Rubonnek/expose-simplify-path | Max Hilbrunner | |
Expose `String.simplify_path` | |||
2021-08-24 | Expose String.simplify_path | Wilson E. Alvarez | |
2021-08-23 | Update documentation for is_absolute_path and is_rel_path | Wilson E. Alvarez | |
2021-08-20 | Improve documentation for `String.get_extension()` | Hugo Locurcio | |
2021-08-18 | String: Fix default decimals truncation in num and num_real | Rémi Verschelde | |
Fixes undefined behavior, and fixes the logic for negative powers of ten. Fixes #51764. Adds tests to validate the changes and prevent regressions. Adds docs for `String.num`. | |||
2021-08-08 | Fix Unicode URL link tags to render correctly. | follower | |
Change incorrect `[/code]` closing tags to `[/url]` tags. The `url` tags for the links to the Unicode code points information use `[/code]` rather than `[/url]` to close them. This results in the links being rendered incorrectly in the IDE--the entire rest of the documentation for each method gets turned into a giant underlined link. This issue was introduced in https://github.com/godotengine/godot/commit/a2271ba3bdaa5fab0f6518a2445b839d36e283eb. | |||
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-16 | Rename `is_valid_integer()` to `is_valid_int()` | Lightning_A | |
Method from `String` | |||
2021-06-03 | Rename `String.is_abs_path()` to `String.is_absolute_path()` | Hugo Locurcio | |
This is more consistent with `NodePath.is_absolute()`. | |||
2021-05-20 | Change behavior of String.right | Tomasz Chabora | |
2021-03-18 | doc: Sync classref with current source | Rémi Verschelde | |
And move GLTF docs to its module folder. | |||
2021-03-09 | Merge pull request #45545 from abaire/relaxes_gltf_name_sanitization | Rémi Verschelde | |
Relaxes node name sanitization in gltf documents. | |||
2021-03-05 | Docs: Port Code Examples to C# (R, S, T, U) | HaSa1002 | |
* RenderingServer * RichTextEffect * SceneTree * SceneTreeTimer * ScriptCreateDialog * SpinBox * Sprite2D * StreamPeer * String * SurfaceTool * TextEdit * TileMap * Tree * Tween * UDPServer * UndoRedo Co-authored-by: Aaron Franke <arnfranke@yahoo.com> | |||
2021-02-24 | Relaxes Node naming constraints in glTF documents to match the Editor. | abaire | |
2021-01-28 | Unify URI encoding/decoding and add to C# | Aaron Franke | |
http_escape and percent_encode have been unified into uri_encode, and http_unescape and percent_decode have been unified into uri_decode. | |||
2021-01-28 | Make hex_to_int and bin_to_int handle the prefix automatically | Aaron Franke | |
Also add BinToInt to C# | |||
2021-01-26 | Renamed String.ord_at to unicode_at | Yuri Roubinsky | |
2021-01-10 | Clarify `lstrip()/rstrip()` methods in `String` for removed characters | Andrii Doroshenko (Xrayez) | |
2021-01-04 | doc: Sync classref with current source | Rémi Verschelde | |
2020-12-28 | Rename empty() to is_empty() | Marcel Admiraal | |
2020-11-10 | doc: Sync classref to add operators after #43419 | Rémi Verschelde | |
2020-11-09 | Variant: Sync docs with new constructors, fixups after #43403 | Rémi Verschelde | |
Change DocData comparators for MethodDoc and ArgumentDoc to get a better ordering of constructors. | |||
2020-11-04 | doc: Sync classref with current source + fixup some bindings | Rémi Verschelde | |
Includes various changes triggered by the refactoring of method bindings. | |||
2020-10-01 | Merge pull request #42435 from Calinou/doc-string-is-valid-ip-address | Rémi Verschelde | |
Improve the `String.is_valid_ip_address()` documentation | |||
2020-09-30 | Improve the `String.is_valid_ip_address()` documentation | Hugo Locurcio | |
This closes https://github.com/godotengine/godot-docs/issues/4097. |