| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| | |
Expose `TranslationServer::standardize_locale` `add_default` param publicly
|
| |
| |
| |
| |
| |
| |
| |
| | |
Comparing locales can have surprising outcomes since it standardizes
locales with defaults. For example, zh and zh_CN result in an exact
match since the defaults change them both to zh_Hans_CN. Expose the
add_default parameter publicly with a default of false so the fully
standardized locale can be inspected.
|
|\ \
| |/
|/|
| | |
Fix `Projection::invert` for orthographic projection
|
| |
| |
| |
| |
| |
| | |
Fixes #68878, specially when using orthographic projection.
Also adds some tests.
|
|\ \
| | |
| | |
| | | |
Core: Fix `Callable.get_bound_arguments{,_count}()` return incorrect data
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
Core: Add typed dictionary support for binary serialization
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | |
| | | | |
Improve locale comparison
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Since 9456454109, country specific locales are always preferred over
country-less locales even when the OS locale country doesn't match. For
example, running the Godot editor with locale es_ES will result in the
es_AR locale being chosen even though the es locale would be better.
The change happened because the score of the es_AR locale and the es
locale are the same when comparing to es_ES. Change this by parsing
locale strings into a Locale structure and decreasing the score when
script, country or variant are set in both but not matched. For the
es_ES case, this causes the es_AR score to be decreased since the
countries don't match. On the other hand, the es locale is not decreased
since it doesn't specify a country.
|
|\ \ \
| | | |
| | | |
| | | | |
Fix duplicated entries in `TranslationServer::get_loaded_locales()`
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This helps, for importers spitting out new resources to the res://
filesystem to actually hash them to generate deterministic UIDs.
This PR also fixes the determinism for translations.
|
|\ \ \ \
| |_|/ /
|/| | |
| | | | |
Add fuzzy string matching to quick open search
|
| |/ /
| | |
| | |
| | | |
Co-authored-by: sam <samsface@gmail.com>
|
|\ \ \
| | | |
| | | |
| | | | |
Always add decimal when converting float to string
|
| | | | |
|
|\ \ \ \
| |_|/ /
|/| | |
| | | | |
[Codestyle] Set clang-format `RemoveSemicolon` rule to `true`
|
| | | |
| | | |
| | | |
| | | | |
- Set clang-format `Standard` rule to `c++20`
|
|\ \ \ \
| |/ / /
|/| | |
| | | | |
Implement array based hash map `AHashMap`
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
Core: Fix String::num_int64(), uint64 for valid base check
|
| | |
| | |
| | |
| | |
| | |
| | | |
- Ensure String::num_int64, uint64 returns an empty string for bases less than 2 or greater than 36.
- Added corresponding test cases to verify the behavior.
- Error messages are printed when invalid bases are encountered. These messages are suppressed in the test output.
|
|/ / |
|
| | |
|
|\ \
| | |
| | |
| | | |
Add unit tests for `PacketPeer`
|
| | |
| | |
| | |
| | | |
Partially fixes #43440
|
|\ \ \
| | | |
| | | |
| | | | |
Add unit tests for `StreamPeer` and `StreamPeerBuffer`
|
| |/ /
| | |
| | |
| | | |
Partially fixes #43440
|
|/ / |
|
| | |
|
|\ \
| | |
| | |
| | | |
Add callable support for `find` and `rfind` `Array` methods
|
| |/ |
|
|\ \
| | |
| | |
| | | |
Object: Let debug lock handle callee destruction within call chain gracefully
|
| | | |
|
|\ \ \
| |/ /
|/| |
| | | |
Fix parsing of `4.` in Expression
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
StringName Dictionary keys
|
| | | |
| | | |
| | | |
| | | |
| | | | |
also added 'is_string()' method to Variant
and refactored many String type comparisons to use it instead
|
| | | |
| | | |
| | | |
| | | | |
Using `is_valid/null` over checks with `nullptr` or `ERR_FAIL_NULL` etc.
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Add more unit tests for String `insert` and `join`.
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Ability to convert native engine types to JSON and back.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Implements support for all engine types in JSON encoding/decoding
Co-Authored-By: Juan <reduzio@gmail.com>
Co-Authored-By: Rémi Verschelde <rverschelde@gmail.com>
|
| |/ / /
|/| | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This is useful for custom tagging of objects with properties (for example in Blender) and having this available in the editor for scripting.
- Adds import logic to propagate the parsed GLTF extras all the way to the resulting Node->meta
- Adds export logic to save Godot Object meta into GLTF extras
- Supports `nodes`, `meshes` and `materials` (in GLTF sense of the words)
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
- Adds `is_valid_unicode_identifier()`
- Adds `is_valid_ascii_identifier()`
- Deprecates `is_valid_identifier()`
- Renames `validate_identifier()` to `validate_ascii_identifier()`
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
[Tests] Ensure all default method arguments can be encoded
|
| | | | |
| | | | |
| | | | |
| | | | | |
Checks that all arguments of bound methods can be encoded in extensions, checking non-empty or non-null cases for containers and objects
|
| |/ / /
|/| | | |
|