summaryrefslogtreecommitdiffstats
path: root/core/string
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@d09d82d433b03bb3773fd2a8cc8d6ccc2f8739ceSpartan3222024-11-264-7/+57
|\
| * Merge pull request #99527 from RandomShaper/fix_threaded_transThaddeus Crews2024-11-221-2/+4
| |\ | | | | | | | | | Make loading translations from threads safe
| | * Make loading translations from threads safePedro J. Estébanez2024-11-221-2/+4
| | |
| * | Expose standardize_locale add_default param publiclyDan Nicholson2024-11-213-5/+51
| |/ | | | | | | | | | | | | | | 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.
* | Merge commit godotengine/godot@fd4c29a189e53a1e085df5b9b9a05cac9351b3efSpartan3222024-11-193-25/+25
|\|
| * Use `(r)find_char` instead of `(r)find` for single charactersA Thousand Ships2024-11-173-25/+25
| |
* | Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-123-65/+99
|\|
| * Merge pull request #97923 from kisg/translation_server_siof_fixThaddeus Crews2024-11-122-3/+1
| |\ | | | | | | | | | Make TranslationServer singleton variable inline.
| | * Make TranslationServer singleton variable inline.Gergely Kis2024-10-072-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | This change avoids the problem known as 'Static Initialization Order Fiasco' (SIOF). See the following PR for more explanation: https://github.com/godotengine/godot/pull/94683 Co-authored-by: Gabor Koncz <gabor.koncz@migeran.com>
| * | Merge pull request #98743 from dbnicholson/improve-compare-localesThaddeus Crews2024-11-122-61/+94
| |\ \ | | | | | | | | | | | | Improve locale comparison
| | * | Improve locale comparisonDan Nicholson2024-11-122-61/+94
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | | Merge pull request #98547 from timothyqiu/loaded-locales-setThaddeus Crews2024-11-111-1/+4
| |\ \ \ | | | | | | | | | | | | | | | Fix duplicated entries in `TranslationServer::get_loaded_locales()`
| | * | | Fix duplicated entries in `TranslationServer::get_loaded_locales()`Haoyu Qiu2024-10-261-1/+4
| | | | |
* | | | | Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-114-2/+471
|\| | | |
| * | | | Merge pull request #98278 from a-johnston/fuzzy-search-rebaseThaddeus Crews2024-11-104-2/+467
| |\ \ \ \ | | |_|/ / | |/| | | | | | | | Add fuzzy string matching to quick open search
| | * | | Add fuzzy string matching to quick open searchAdam Johnston2024-10-284-2/+467
| | |/ / | | | | | | | | | | | | Co-authored-by: sam <samsface@gmail.com>
* | | | Merge commit godotengine/godot@c6c464cf9ae56e8b68620af65125dd980d0e8122Spartan3222024-11-024-13/+28
|\| | |
| * | | Merge pull request #47502 from KoBeWi/add_0Thaddeus Crews2024-10-312-7/+22
| |\ \ \ | | | | | | | | | | | | | | | Always add decimal when converting float to string
| | * | | Always add decimal when printing floatkobewi2024-10-232-7/+22
| | | | |
| * | | | [Core] Improve error messages with `vformat`A Thousand Ships2024-10-302-6/+6
| | | | |
* | | | | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-303-4/+15
|\| | | |
| * | | | Merge pull request #65962 from 4d49/format-objectThaddeus Crews2024-10-291-1/+12
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Add `Object` support for `String.format`
| | * | | | Add `Object` support for `String.format`Mansur Isaev2024-10-291-1/+12
| | | |/ / | | |/| |
| * | | | Merge pull request #97934 from adamscott/give-AThousandShips-a-breakThaddeus Crews2024-10-292-3/+3
| |\ \ \ \ | | |/ / / | |/| | | | | | | | [Codestyle] Set clang-format `RemoveSemicolon` rule to `true`
| | * | | Set clang-format `RemoveSemicolon` rule to `true`Adam Scott2024-10-252-3/+3
| | | | | | | | | | | | | | | | | | | | - Set clang-format `Standard` rule to `c++20`
* | | | | Merge pull request #818 from Spartan322/fixup/copyright-headersGeorge L. Albany2024-10-2725-50/+50
|\ \ \ \ \ | | | | | | | | | | | | Fix copyright headers referring to Godot
| * | | | | Fix copyright headers referring to GodotSpartan3222024-10-2725-50/+50
| | | | | |
* | | | | | Merge commit godotengine/godot@61accf060515416da07d913580419fd8c8490f7bSpartan3222024-10-263-237/+446
|\ \ \ \ \ \ | |/ / / / / |/| / / / / | |/ / / /
| * | | | Merge pull request #98395 from Repiteo/core/char-range-utils-updateThaddeus Crews2024-10-252-237/+442
| |\ \ \ \ | | |/ / / | |/| | | | | | | | Core: Update `char_range.inc` to Unicode 16
| | * | | Core: Update `char_range.inc` to Unicode 16Thaddeus Crews2024-10-212-237/+442
| | | | |
| * | | | Merge pull request #98357 from yeojunh/valid-base-check-num-int64-uint64Clay John2024-10-241-0/+4
| |\ \ \ \ | | |_|/ / | |/| | | Core: Fix String::num_int64(), uint64 for valid base check
| | * | | Add checks for valid base in String::num_int64, uint64().yeojunh2024-10-201-0/+4
| | |/ / | | | | | | | | | | | | | | | | | | | | - 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.
* | | | Merge commit godotengine/godot@b3bcb2dc14691f7729984128dca26a844f662fa1Spartan3222024-10-222-13/+24
|\| | |
| * | | Merge pull request #98236 from timothyqiu/locale-compare-cache-4.xThaddeus Crews2024-10-212-13/+24
| |\ \ \ | | |/ / | |/| | | | | | Cache results for `TranslationServer.compare_locales()`
| | * | Cache results for `TranslationServer.compare_locales()`Haoyu Qiu2024-10-162-13/+24
| | |/
* | | Merge commit godotengine/godot@80f0b33313dae52d072ba2771a88ebcc4f0b4d6dSpartan3222024-10-181-0/+4
|\| |
| * | Don't pseudolocalize empty stringsHaoyu Qiu2024-10-171-0/+4
| |/
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-1125-0/+50
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* | Rebrand Godot to RedotRandolph W. Aarseth II2024-10-112-2/+2
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Linux Editor tests workflow matrix Add Windows Editor w/ Mono workflow matrix Add Generate Glue Code job to Windows workflow Add Build GodotSharp job to Windows workflow Add godot compatibility version references Add Godot author info Add Godot version compatibility info Add Godot donor info Add Godot authors and donors to editor_about.cpp Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Merge pull request #96230 from timothyqiu/per-domain-pseudolocalizationRémi Verschelde2024-10-044-234/+355
|\ | | | | | | Move pseudolocalization into `TranslationDomain`
| * Move pseudolocalization into TranslationDomainHaoyu Qiu2024-09-214-234/+355
| | | | | | | | Also adds command-line option `--editor-pseudolocalization`
* | Parse fragment from URLHaoyu Qiu2024-09-272-5/+22
| |
* | SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
| |
* | Fix script editor wrongly replaces and quotes non-ASCII lettersHaoyu Qiu2024-09-232-1/+25
|/
* Make editor use translation domainsHaoyu Qiu2024-09-172-102/+14
| | | | | | | | | | | | How editor plugins use this feature: 1. Pick a unique translation domain name. 2. `_enter_tree()`: load translations into that translation domain. 3. Call `set_translation_domain()` for its root UI node. 4. `_exit_tree()`: remove that translation domain. Plugins can also set the translation domain to `godot.editor` for nested nodes that should use editor translations. `EditorFileDialog` automatically does this.
* Add translation domainHaoyu Qiu2024-09-174-108/+287
|
* StringName: Fix empty hashrune-scape2024-09-098-90/+7
| | | | +Fixed compat hashes
* Merge pull request #92570 from rune-scape/rune-stringname-bitsRémi Verschelde2024-09-042-19/+92
|\ | | | | | | StringName: `operator==` compares in-place
| * StringName: operator== compares in-placerune-scape2024-09-032-19/+92
| |
* | Merge pull request #96462 from RandomShaper/opt_comp_locRémi Verschelde2024-09-021-0/+5
|\ \ | | | | | | | | | TranslationServer: Add fast path for comparison of equal locales