summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2021-10-11Make the project data directory customizable.ne0fhyk
2021-10-09Enhance and cleanup stringify for Vectormashumafi
2021-10-08Avoid the need for copy assignment in HashMap key/data typesPedro J. Estébanez
2021-10-08Merge pull request #53517 from ColinKinloch/native_callback_typedefRémi Verschelde
2021-10-08Merge pull request #53555 from Pineapple/faster-int-string-dictionaryRémi Verschelde
2021-10-08[Net] Rename RPCConfig.sync to call_local.Fabio Alessandrelli
For consistency with the other user facing changes.
2021-10-08Faster hash_compare for integer and string keys in dictionariesBartłomiej T. Listwon
2021-10-07Merge pull request #53422 from KoBeWi/add_LUA_to_GodotRémi Verschelde
2021-10-07Merge pull request #53545 from vnen/gdscript-releaseRémi Verschelde
2021-10-07Merge pull request #53500 from vnen/variant-in-string-nameRémi Verschelde
2021-10-07Enable method type information on release buildsGeorge Marques
This is needed to ensure GDScript compilation works properly on release builds and make use of optimized typed instructions.
2021-10-07Replace references to VisualServer in code comments with RenderingServerHugo Locurcio
VisualServer no longer exists in the `master` branch.
2021-10-07Add typedef to GDNativeInstanceBindingCallbacksColin Kinloch
2021-10-06Add Variant `in` operator for any String/StringName operandsGeorge Marques
Allow using String or StringName types as operand in any position of the `in` operator, which is more convenient in scripting when interacting with data in the engine (such as a Node name).
2021-10-06[core_bind] Add `is_alive` to Thread. Replace `is_active` with `is_started`.Brian Semrau
Replacing `is_active` resolves an API discrepancy between core_bind Thread and core/os Thread.
2021-10-05Merge pull request #52711 from m4gr3d/provide_getter_for_project_data_dir_masterRémi Verschelde
2021-10-05Merge pull request #47497 from briansemrau/nan-inf-tscn-parsing-bugRémi Verschelde
2021-10-05NaN, INF read/write bug fixedThakee Nathees
Fix: #40589
2021-10-05Improve error message when instantiating virtual classMaxime Lapointe
2021-10-05Fix LUA-style assignment in Dictionarykobewi
2021-10-05Merge pull request #53225 from aaronfranke/c-localeRémi Verschelde
2021-10-05Merge pull request #53405 from winterpixelgames/PR-more-error-logging-releaseRémi Verschelde
2021-10-04revert 0d7409a so additional error information prints in release buildsJordan Schidlowsky
2021-10-04GDScript completion: Handle quote style ad-hoc to remove editor dependencyRémi Verschelde
`core` and `scene` shouldn't depend on `editor`, so they can't query this style setting in `get_argument_options`. But we can handle it after the fact in GDScript's completion code. Also cleans up a couple extra unused invalid includes in `core`.
2021-10-04Merge pull request #53270 from akien-mga/charproxy-add-copy-constructorRémi Verschelde
2021-10-02Merge pull request #53059 from timothyqiu/thread-objRémi Verschelde
Fix crash when creating thread
2021-10-01Merge pull request #47442 from Shatur/fix-connect-reference-countedRémi Verschelde
2021-10-01Merge pull request #53290 from Faless/mp/4.x_opts_namesFabio Alessandrelli
[Net] Rename RPC constants and annotation arguments.
2021-10-01[Net] Rename RPC constants and annotation arguments.Fabio Alessandrelli
any -> any_peer sync -> call_local ordered -> unreliable_ordered Multiplayer.RPC_MODE_ANY -> RPC_MODE_ANY_PEER Multiplayer.TRANSFER_MODE_ORDERED -> TRANSFER_MODE_UNRELIABLE_ORDERED
2021-10-01Implement TextServer GDExtension interface, remove TextServer GDNative ↵bruvzg
interface.
2021-10-01Allow shortcuts to have any number of bindings. Updated UI as required.Eric M
2021-10-01Merge pull request #52850 from mashumafi/vector-bsearchRémi Verschelde
2021-09-30Implement bsearch for Vector and Packed*Arraymashumafi
2021-09-30Use range iterators for `Map`Lightning_A
2021-09-30CharProxy: Add copy constructorRémi Verschelde
Adding the copy constructor is needed to solve a `-Wdeprecated-copy` warning from GCC and Clang, which is raised when upgrading doctest from 2.4.4 to 2.4.6.
2021-09-30Merge pull request #52544 from JFonS/lod_fixesJuan Linietsky
Auto LOD fixes and improvements
2021-09-30Merge pull request #48685 from bruvzg/bundle_icon_4Rémi Verschelde
2021-09-30Merge pull request #53251 from LATRio/53224Rémi Verschelde
2021-09-30Merge pull request #53227 from Calinou/rename-getornullMax Hilbrunner
Rename RID's `getornull()` to `get_or_null()`
2021-09-30InputEventJoypadMotion::set_axis - reject invalid axisLATRio
2021-09-30Merge pull request #53230 from nekomatata/fix-2d-bvh-overflowRémi Verschelde
2021-09-29Rename RID's `getornull()` to `get_or_null()`Hugo Locurcio
2021-09-29Merge pull request #53044 from lucypero/thread_overrideRémi Verschelde
2021-09-29Fix buffer overflow in 2D BVHPouleyKetchoupp
Some areas of code were missed and assumed Vector3.
2021-09-29Fix Platform Thread OverrideLucy
2021-09-29Add locale rename for the "C" localeAaron Franke
2021-09-29Merge pull request #53217 from Faless/ext/fix_pointer_infoRémi Verschelde
2021-09-29Fix crash when creating threadHaoyu Qiu
2021-09-29Fix const pointers types in docs and extension API.Fabio Alessandrelli
The GDVIRTUAL_NATIVE_PTR did not declare the correct GDNativeConstPtr template, resulting in "void*" being used as it's type info in both the documentation and the extension API dump.
2021-09-29Implement override of get_message and get_plural_messageO01eg