summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #887 from mcdubhghlas/4.34.3McDubh2024-11-281-6/+6
|\ | | | | [4.3] Corrected manpage
| * Corrected manpageDubhghlas McLaughlin2024-11-281-6/+6
|/
* Merge pull request #879 from Spartan322/4.3-fix/docs-godot-practicesGeorge L. Albany2024-11-242-2/+2
|\ | | | | [4.3] Fix invalid doc references to godot_notifications
| * Fix invalid doc references to godot_notificationsSpartan3222024-11-232-2/+2
| |
* | Merge pull request #874 from mcdubhghlas/4.3McDubh2024-11-211-2/+2
|\ \ | |/ |/| [4.3] Bump to 4.3.1.alpha
| * [4.3] Bump to 4.3.1.alphaDubhghlas McLaughlin2024-11-211-2/+2
| |
* | Merge pull request #876 from Spartan322/revert/a0c1744George L. Albany2024-11-211-15/+6
|\| | | | | [4.3] Revert "ResourceLoader: Report error if resource type unrecognized"
| * Revert "ResourceLoader: Report error if resource type unrecognized"Spartan3222024-11-211-15/+6
|/ | | | This reverts commit a0c17446add3a35f4b402e7c855301e5bf36cf47.
* Merge pull request #872 from Spartan322/4.3-fix/using-redotGeorge L. Albany2024-11-197-69/+69
|\ | | | | [4.3] Fix `using Redot;` to `using Godot;` in docs
| * Fix `using Redot;` to `using Godot;` in docsSpartan3222024-11-197-69/+69
|/
* Merge pull request #868 from Spartan322/4.3-fix/win32-sizet-conv-errorsGeorge L. Albany2024-11-171-2/+2
|\ | | | | [4.3] Fix 32-bit Windows build
| * Fix 32-bit Windows build.Pāvels Nadtočajevs2024-11-171-2/+2
|/ | | | (cherry picked from commit 287b7543a0861a74e1b1f8b8d88102f5d9e13586)
* Merge pull request #866 from Spartan322/4.3-faster-replaceGeorge L. Albany2024-11-161-60/+157
|\ | | | | [4.3] Optimize `String::replace` methods
| * [Core] Optimize `String::replace` methodsA Thousand Ships2024-11-151-60/+157
|/ | | | | | | Performs a single allocation, only when any instances are found, and avoids concatenations and other unnecessary conversions. (cherry picked from commit cbaec62b0335bc70c7cf7d55651678591bafafd2)
* Merge pull request #865 from Spartan322/4.3-fix/unhandled-picking-docsGeorge L. Albany2024-11-151-1/+1
|\ | | | | [4.3] Correct `Node._unhandled_picking_input` to refer to InputEvent
| * Correct `Node._unhandled_picking_input` to refer to InputEventSpartan3222024-11-151-1/+1
|/
* Merge pull request #863 from Spartan322/4.3-merge/711c725George L. Albany2024-11-1518-357/+619
|\ | | | | [4.3] Merge commit godotengine/godot@711c725
| * Merge commit godotengine/godot@711c725cf1b641d05d6cc988a64601622e48fe4aSpartan3222024-11-1518-357/+619
|/|
| * Merge pull request #99108 from RandomShaper/win_less_inheritance_4.3Rémi Verschelde2024-11-152-24/+67
| |\ | | | | | | | | | [4.3] Windows: Avoid child processes inheriting all file handles
| | * Windows: Avoid child processes inheriting all file handlesPedro J. Estébanez2024-11-122-24/+67
| | |
| * | Merge pull request #99058 from UnfavorableEnhancer/animation_snapping_fixRémi Verschelde2024-11-151-8/+6
| |\ \ | | | | | | | | | | | | [4.3] Fix animation snapping in seconds mode
| | * | fix animation snapping in seconds modeUnfavorableEnhancer2024-11-111-8/+6
| | |/ | | | | | | | | | fixes animation snapping rounding to weird values in seconds mode + fixes holding shift not reducing snap value
| * | Merge pull request #98964 from RandomShaper/fix_classdb_deadlock_4.3Rémi Verschelde2024-11-152-35/+56
| |\ \ | | | | | | | | | | | | [4.3] Fix deadlocks related to ClassDB queries about global classes
| | * | Fix deadlocks related to ClassDB queries about global classesPedro J. Estébanez2024-11-082-35/+56
| | |/ | | | | | | | | | | | | | | | `ClassDB::can_instantiate()` and other reflection methods deadlock if the type is an script global class, when such script indirectly uses a not-yet-registered class. The reason is the `ClassDB` read lock is still held when invoking the `ResourceLoader` to load the class script, which may in turn need to lock for writing (for the class registration). In particular, this happens with some types related to animation tree, that aren't registered at engine startup, but can happen with others, especially ones from the user. Registration statements are also added for the animation-related types that were lacking them.
| * | Merge pull request #96606 from RandomShaper/res_loader_cherrypicks_4.3Rémi Verschelde2024-11-1513-290/+490
| |\ \ | | |/ | |/| | | | [4.3] Cherry-picks related to `ResourceLoader`
| | * ResourceLoader: Report error if resource type unrecognizedPedro J. Estébanez2024-11-061-6/+15
| | | | | | | | | | | | | | | | | | Co-authored-by: Summersay415 <summersay415@gmail.com> (cherry picked from commit fe21913ee82c9e3fd660b511f618fce40cf43e49)
| | * EditorResourcePreview: Let loads complete after exit requestedPedro J. Estébanez2024-09-231-1/+3
| | | | | | | | | | | | (cherry picked from commit f31867d2b9e7b916e24683c024764bcc3d326a83)
| | * ResourceLoader: Fixup resource changed featurePedro J. Estébanez2024-09-231-0/+4
| | | | | | | | | | | | | | | | | | This is a complement to: https://github.com/godotengine/godot/pull/96593 (cherry picked from commit 97197ff5e9c73ffbb2e3822d40a63bc3f8c47373)
| | * ResourceLoader: Add last resort life-time insurance for tokensPedro J. Estébanez2024-09-231-0/+10
| | | | | | | | | | | | (cherry picked from commit ccd470d33c49e28d5be3ca258da4f2ce950949db)
| | * ResourceLoader: Add thread-aware resource changed mechanismPedro J. Estébanez2024-09-233-11/+107
| | | | | | | | | | | | (cherry picked from commit 0f3ee922e07fd4d16d9ef6dac150beb9c84ac527)
| | * ResourceLoader: Simplify handling of unregistered tasksPedro J. Estébanez2024-09-232-40/+34
| | | | | | | | | | | | (cherry picked from commit c450f4d667e9f2462cb506cd3a32ca882c49ba68)
| | * Fix ResourceLoader is not verbosely printing a resource path on loadingKongfa Waroros2024-09-231-0/+7
| | | | | | | | | | | | (cherry picked from commit bfb5570c033b633c030cc269d5e98213dfebd5a5)
| | * ResourceLoader: Handle another case of user tokensPedro J. Estébanez2024-09-051-0/+5
| | | | | | | | | | | | (cherry picked from commit 0441c67de67b3c84d57e8ade5f3a0fee70959338)
| | * Change warning muting so it affects all levels, but locallyPedro J. Estébanez2024-09-052-1/+10
| | | | | | | | | | | | (cherry picked from commit 9cbc3f14198c30c14315cabf72b0e3e3438b2f61)
| | * ResourceLoader: Use better error handling for possible engine bugsPedro J. Estébanez2024-09-051-12/+2
| | | | | | | | | | | | (cherry picked from commit 31a9e10ddb37f7b5c8697c24ba02ce7bd7a1305a)
| | * WorkerThreadPool (plus friends): Overhaul unlock allowance zonesPedro J. Estébanez2024-09-0512-110/+118
| | | | | | | | | | | | | | | | | | This fixes a rare but possible deadlock, maybe due to undefined behavior. The new implementation is safer, at the cost of some added boilerplate. (cherry picked from commit f4d76853b9d921e3645295f9bebc39eb73661e67)
| | * ResourceLoader: Fix edge cases in the management of user tokensPedro J. Estébanez2024-09-052-84/+100
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Make handling of user tokens atomic: Loads started with the external-facing API used to perform a two-step setup of the user token. Between both, the mutex was unlocked without its reference count having been increased. A non-user-initiated load could therefore destroy the load task when it unreferenced the token. Those stages now happen atomically so in the one hand, the described race condition can't happen so the load task life insurance doesn't have a gap anymore and, on the other hand, the ugliness that the call to load could return `ERR_BUSY` if happening while other thread was between both steps is gone. The code has been refactored so the user token concerns are still outside the inner load start function, which is agnostic to that for a cleaner implementation. 2. Clear ambiguity between load operations running on `WorkerThreadPool`: The two cases are: single-loaded thread directly started by a user pool task and a load started by the system as part of a multi-threaded load. Since ensuring all the code dealing with this distinction would make it very complex, and error-prone, a different measure is applied instead: just take one of the cases out of the dicotomy. We now ensure every load happening on a pool thread has been initiated by the system. The way of achieving that is that a single-threaded user-started load initiated from a pool thread, is run as another task. (cherry picked from commit df23858488098086da20c67d9fc62f7ffb3d528c)
| | * ResourceLoader: Optimize remap check by deferring until a non-mutex zonePedro J. Estébanez2024-09-052-6/+5
| | | | | | | | | | | | (cherry picked from commit 5c970db2e49af93139d15d3fe090db44b4bd3317)
| | * ResourceLoader: Enhance deadlock preventionPedro J. Estébanez2024-09-054-20/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Benefits: - Simpler code. The main load function is renamed so it's apparent that it's not just a thread entry point anymore. - Cache and thread modes of the original task are honored. A beautiful consequence of this is that, unlike formerly, re-issued loads can use the resource cache, which makes this mechanism much more performant. - The newly added getter for caller task id in WorkerThreadPool allows to remove the custom tracking of that in ResourceLoader. - The check to replace a cached resource and the replacement itself happen atomically. That fixes deadlock prevention leading to multiple resource instances of the same one on disk. As a side effect, it also makes the regular check for replace load mode more robust. (cherry picked from commit 28619e26cf35227c3ddab35878e1045f82895657)
| | * ResourceLoader: Properly push & pop TLS state on recursive load tasksPedro J. Estébanez2024-09-052-0/+24
| | | | | | | | | | | | (cherry picked from commit bd0959ebdd8819321f9b24880d05b43eb2aaa4cc)
| | * Fix use condition_variable after freeAleksey Vasenev2024-09-052-8/+14
| | | | | | | | | | | | (cherry picked from commit 2ff6594928f0d6004ca76359af8e31c504b0bd57)
| | * ResourceLoader: Revert workaround resource loading crashes due to buggy TLSPedro J. Estébanez2024-09-052-12/+8
| | | | | | | | | | | | | | | | | | This reverts commit 41c07856361d7cf2bcbda6d84386b1a0d3969f6a. (cherry picked from commit e9407d48772e9ed1382f6ccd5a73e6d12465ab2f)
* | | Merge pull request #862 from ↵George L. Albany2024-11-151-1/+1
|\ \ \ | | | | | | | | | | | | | | | | LegendaryGuard/rebranding/comment-switch-godette-to-redot-chan [4.3] Rebrand godette into redot-chan on platformer 2 comment for consistency
| * | | Rebrand godette into redot-chan on Platformer 2 comment for consistencyLegendGuard2024-11-151-1/+1
|/ / /
* | | Merge pull request #860 from Spartan322/4.3-fix/android-loggerGeorge L. Albany2024-11-143-7/+7
|\ \ \ | | | | | | | | [4.3] Fix android logger Godot references to Redot
| * | | Fix android logger Godot references to RedotSpartan3222024-11-143-7/+7
| | | |
* | | | Merge pull request #858 from trashguy/rebranding/switch-godette-to-redot-chanGeorge L. Albany2024-11-146-13/+13
|\ \ \ \ | |/ / / |/| | | [4.3] Rebrand Godette to Redot-chan
| * | | Rebrand godette to Redot-chanTrashguy2024-11-146-13/+13
|/ / /
* | | Merge pull request #856 from Spartan322/4.3-fix/android-log-tagGeorge L. Albany2024-11-131-1/+1
|\ \ \ | | | | | | | | [4.3] Fix Redot being logged as godot in android logger
| * | | Fix Redot being logged as godot in android loggerSpartan3222024-11-131-1/+1
|/ / /