summaryrefslogtreecommitdiffstats
path: root/doc/classes/StringName.xml
Commit message (Collapse)AuthorAgeFilesLines
* Fix `format` description being different between String and StringNameMicky2024-11-131-1/+7
|
* Merge pull request #95758 from Mickeon/documentation-no-differences-StringThaddeus Crews2024-11-121-14/+21
|\ | | | | | | Fix differences between String and StringName's documentation
| * Fix differences between String and StringName's documentationMicky2024-08-181-14/+21
| |
* | Remove outdated note about `not` operator with String and StringNameelle2024-09-161-1/+1
| |
* | Add `String.is_valid_unicode_identifier()`Haoyu Qiu2024-08-271-1/+31
| | | | | | | | | | | | | | - Adds `is_valid_unicode_identifier()` - Adds `is_valid_ascii_identifier()` - Deprecates `is_valid_identifier()` - Renames `validate_identifier()` to `validate_ascii_identifier()`
* | Remove empty `[b]Example:[/b]` lines from the class referenceMicky2024-08-191-4/+0
|/
* [Core] Add case-insensitive `String::containsn`A Thousand Ships2024-05-081-1/+9
|
* Fix various typos with codespellRémi Verschelde2024-05-071-2/+2
| | | | | | | | | Using 2.2.7.dev217+g10c2abcf. Had to add `colour` to the ignore list as we used it as an alias/keyword for the documentation of color-related APIs. Also ignore recommendations to change `thirdparty` to either `third-party` or `third party`, which are correct but we use the former fairly consistently.
* Add a note for `String::reverse` to warn about its implementationYuri Rubinsky2024-04-301-1/+1
|
* Fix sorting of files/dirs in dialogsA Thousand Ships2024-03-201-4/+20
| | | | Sorts leading `_` before other characters except `.`.
* Add keywords to improve search in the class referenceHugo Locurcio2024-02-221-1/+1
|
* Merge pull request #79815 from idbrii/patch-2Rémi Verschelde2024-02-091-1/+1
|\ | | | | | | doc: Clarify when to construct a StringName ahead of time
| * doc: Clarify when to construct a StringName ahead of timeDavid Briscoe2024-02-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix docs don't give justification for manual construction. Clarify how to apply manual StringName construction as an optimization and that "string intern" means "work at parse time". There are several godot-demo-projects (including 3d/platformer) that incorrectly use StringName literals (they use & literals instead of just passing strings), so clearly this is confusing. AThousandShips did a disassembly test to prove it automatically converts constant strings to StringName for annotated functions: func do_test(_var: StringName, _var2: String): pass func test(): do_test("abc", "def") Yields: Disassembling do_test(_var, _var2) 0: line 2: pass 2: == END == Disassembling test() 0: line 5: do_test("abc", "def") 2: call self.do_test(const(&"abc"), const("def")) 10: assign stack(3) = false 12: == END == It also happens with built-in functions such as those of Input.
* | Merge pull request #86639 from ↵Rémi Verschelde2024-01-111-3/+18
|\ \ | | | | | | | | | | | | | | | Mickeon/please-this-took-me-15-minutes-can-we-merge-it-before-2025 Fixing few reports to String's documentation
| * | Fixing some reports to String's documentationMicky2024-01-101-3/+18
| | | | | | | | | | | | | | | | | | | | | Closes https://github.com/godotengine/godot-docs/issues/8043 Closes https://github.com/godotengine/godot-docs/issues/8044 Mitigates https://github.com/godotengine/godot-docs/issues/8190 Closes https://github.com/godotengine/godot/issues/86734
* | | Fix various typos in documentationSeptian2024-01-051-1/+1
|/ /
* | Merge pull request #78529 from Chaosus/string_reverseRémi Verschelde2023-08-161-0/+6
|\ \ | |/ |/| | | Add `String.reverse` method
| * Add `String.reverse` methodYuri Roubinski2023-06-211-0/+6
| |
* | Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-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-devRémi Verschelde2023-07-051-1/+1
| | | | | | | | Keep on waitin'
* | Fix import hints that are followed by dot.number.Martin Capitanio2023-07-051-1/+1
|/ | | | Fixes #78881.
* Mention that the not operator cannot be used with Strings and StringNamesTim Yuen2023-05-301-1/+1
|
* Merge pull request #77609 from RedworkDE/class-ref-code-fixesYuri Sizov2023-05-291-1/+1
|\ | | | | Fix more issues with code tags in class reference
| * Fix more issues with code tags in class referenceRedworkDE2023-05-291-1/+1
| |
* | Merge pull request #76526 from MewPurPur/improve-docs-top-sections-COREYuri Sizov2023-05-291-4/+4
|\ \ | |/ |/| Overhaul the top sections of the class reference (Core classes)
| * Overhaul the top sections of the class reference (Core classes)VolTer2023-05-191-4/+4
| |
* | Merge pull request #77247 from Piralein/nohashforyouYuri Sizov2023-05-191-1/+1
|\ \ | |/ |/| Fix C# code examples in `String` and `StringName`
| * fix c# code exampleHana - Piralein2023-05-191-1/+1
| |
* | Accurately document StringName comparisonsjess3jane2023-05-181-4/+4
| |
* | Make documentation sorting use natural orderNinni Pipping2023-05-091-6/+6
| |
* | Merge pull request #76735 from AThousandShips/natural_cmpRémi Verschelde2023-05-091-3/+13
|\ \ | | | | | | | | | Add `naturalcasecmp_to` function to `String`
| * | Add `naturalcasecmp_to` function to `String`Ninni Pipping2023-05-071-3/+13
| |/ | | | | | | Functions as a complement to `naturalnocasecmp_to`
* / Reimplement String.eraseSilicDev2023-05-041-0/+8
|/
* add `hex_decode()` to `String`bendn2023-04-051-0/+18
|
* Add GDScript `to_wchar_buffer` and `get_string_from_wchar` functions.bruvzg2023-03-211-0/+6
|
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Merge pull request #73195 from timothyqiu/weblate-commentsRémi Verschelde2023-02-171-1/+1
|\ | | | | | | Improvements and fixes based on Weblate comments
| * Improvements and fixes based on Weblate commentsHaoyu Qiu2023-02-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Description of `ui_text_submit` action should be "Submit Text" instead of "Text Submitted". * Spell out "Animation" instead of using "Anim.". * Treat "Max" as regular word instead of writing "Max.". * Use generic "Set %s" for action name instead of a dedicated "Set target_position". * Add translator comment for: * "Inclusive" and "Self" in the profiler. * Places where it needs the context about being an editor progress label. * "Duplicated Animation Name" since it's refering to the new name of a duplicated animation. * Disambiguation of "View Plane Transform", "Paste Selects" and "Display Normal". * Fix wrong undo action name for renaming an input action. * Fix missing end quote in a shader error message. * In class reference: * Fix duplicated "if" in the description of `signf()`. * Fix mismatched example output in `String.operator %()`. * Fix typo in the description of `Decal.texture_emission`. * Unify description of `String.match()` and `StringName.match()`.
* | Add missing documentation for String & StringNameMicky2023-02-141-4/+10
|/ | | | Also fixes typos brought up in #69821's replies.
* Add missing classref changes after #62942Rémi Verschelde2023-01-271-1/+7
|
* Fix typos with codespellRémi Verschelde2022-12-151-4/+4
|
* Fix docstring for String.get_base_dirAndrés Botero2022-12-121-1/+1
|
* Update StringName documentation to match String'sMicky2022-12-091-178/+264
|
* Unify String and StringNamerune-scape2022-12-051-0/+821
|
* Add missing String & StringName operator descriptionsMicky2022-11-231-2/+10
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-10/+10
|
* [GDExtension] Expose Variant, NodePath and StringName hash functions.bruvzg2022-06-061-0/+8
|
* Remove generating of null comparison operators from documentationYuri Roubinsky2022-03-141-10/+0
|
* Improve documentation for NodePath and StringNameHugo Locurcio2022-03-131-2/+4
| | | | | | | - Update the NodePath shorthand prefix for `master`. - Document the StringName construction shorthand (`&"example"`). - Cross-link between NodePath and StringName, as these are related concepts.
* Add an XML schema for documentationHugo Locurcio2022-02-151-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.