summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | Added empty() function to pool array typesPouleyKetchoupp2019-10-312-0/+21
| | | | | | | | |
* | | | | | | | | Fix "seperate" typosAaron Franke2019-10-311-1/+1
| | | | | | | | |
* | | | | | | | | Provide and print error messages for JSON parsingAndrii Doroshenko (Xrayez)2019-10-311-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Core is not touched, only for binding and scripting.
* | | | | | | | | Merge pull request #33174 from hbina/fix_srgb_to_linearRémi Verschelde2019-10-311-1/+1
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | Fixed uinitialized variable in srgb_to_linear table
| * | | | | | | | Fixed uinitialized variable in srgb_to_linear tableHanif Bin Ariffin2019-10-301-1/+1
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Old array's size was actually 255. Fixes #33133
* / / / / / / / [macOS, Windows, X11] Add graphic tablet pen pressure and tilt support to ↵bruvzg2019-10-302-0/+43
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | InputEventMouseMotion event.
* | | | | | | Fixed remote inspector for tool scriptsPouleyKetchoupp2019-10-282-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #29506
* | | | | | | Merge pull request #32416 from bojidar-bg/32415-shared-metadataRémi Verschelde2019-10-281-1/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Ensure object metadata is unique
| * | | | | | | Ensure object metadata is uniqueBojidar Marinov2019-09-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #32415
* | | | | | | | Merge pull request #33104 from qarmin/fix_some_crashesRémi Verschelde2019-10-284-2/+11
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fix some crashes and using null pointers
| * | | | | | | | Fix some crashes and using null pointersRafał Mikrut2019-10-284-2/+11
| | |_|_|_|_|/ / | |/| | | | | |
* | | | | | | | Merge pull request #32719 from nekomatata/dictionary-optimizationRémi Verschelde2019-10-261-14/+9
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Optimized Dictionary hash() and duplicate() methods
| * | | | | | | | Optimized Dictionary hash() and duplicate() methodsPouleyKetchoupp2019-10-101-14/+9
| | | | | | | | |
* | | | | | | | | MultiplayerAPI cleanup cache when peer disconnectsFabio Alessandrelli2019-10-251-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We used to only cleanup path_get_cache and not path_send_cache causing issues when a peer disconnects and then reconnects with the same ID.
* | | | | | | | | Fix missing `z_verbose` and `z_error` symbols in debug iOS build.bruvzg2019-10-251-0/+2
| |_|_|_|_|_|/ / |/| | | | | | |
* | | | | | | | Merge pull request #33030 from Xrayez/vformat-err-msgRémi Verschelde2019-10-241-1/+1
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Display error messages in console when vformat is called
| * | | | | | | | Display error messages in console when vformat is calledAndrii Doroshenko (Xrayez)2019-10-241-1/+1
| | | | | | | | |
* | | | | | | | | Initialise VMap and HashMap values to the default when they are created.Marcel Admiraal2019-10-242-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Assigns a default value in VMap and HashMap when new keys are created using the array operator so they are the same as the other Map classes. The non const version of the array operator can be used for both assigning a value and retrieving a writeable version. In the Map template classes the assign version is being used to create new keys, but sometimes not assigning a value when retrieving a writeable version. This does not address the problem that the default value may not be the correct one, and it does not address the problem that new keys probably should not be created when the array operator is used. These problems will be addressed in a separate commit.
* | | | | | | | | Merge pull request #32670 from aaronfranke/mono-planeRémi Verschelde2019-10-231-1/+1
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | | [Mono] Change Plane intersect methods to return nullable Vector3
| * | | | | | | | [Mono] Change Plane intersect methods to return nullable Vector3Aaron Franke2019-10-081-1/+1
| | | | | | | | |
* | | | | | | | | Add request permission automatically at androidCagdas2019-10-224-0/+18
| |_|/ / / / / / |/| | | | | | |
* | | | | | | | Merge pull request #30622 from creikey/fix-path-cachingRémi Verschelde2019-10-212-8/+40
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | PackedScene resources are freed before they are saved
| * | | | | | | | Some resources are freed before they are savedCameron Reikes2019-07-252-8/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - PackedScenes freed before saved, so their path cache is lost - Solution is to move data to persistent static map - This patch will fix #30538
* | | | | | | | | Small fixes to redundand code, copy paste bugsqarmin2019-10-141-0/+2
| |_|_|_|_|_|/ / |/| | | | | | |
* | | | | | | | Don't use in some functions empty PoolByteArraysqarmin2019-10-111-8/+13
| | | | | | | |
* | | | | | | | Merge pull request #32741 from qarmin/fix_string_utf_asciiRémi Verschelde2019-10-111-0/+8
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Don't use to_utf8() and to_ascii() on empty String
| * | | | | | | | Don't use to_utf8() and to_ascii() on empty Stringqarmin2019-10-111-0/+8
| | |_|/ / / / / | |/| | | | | |
* / | | | | | | Fix decompress PoolByteArray crashqarmin2019-10-101-2/+2
|/ / / / / / /
* | / / / / / Fix crash when using `Node.get_as_property_path()`Hugo Locurcio2019-10-091-1/+1
| |/ / / / / |/| | | | | | | | | | | | | | | | | This closes #32679.
* | | | | | Merge pull request #32478 from AlexHolly/fix-rect2-enclosesRémi Verschelde2019-10-081-2/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | Make Rect2.encloses return true on same size
| * | | | | | Make Rect2.encloses return true on same sizeAlexander Holland2019-10-021-2/+2
| | |/ / / / | |/| | | |
* | | | | | Merge pull request #32426 from gianllucah/masterRémi Verschelde2019-10-082-0/+9
|\ \ \ \ \ \ | | | | | | | | | | | | | | Option to erase a section key in ConfigFile
| * | | | | | Added a method to erase section key in ConfigFileGianlluca2019-10-072-0/+9
| |/ / / / /
* | | / / / Remove circular include between core/typedefs.h and core/error_macros.hMarcel Admiraal2019-10-088-1/+8
| |_|/ / / |/| | | |
* | | | | Remove circular dependency between Vector3 and Basis.Marcel Admiraal2019-10-073-23/+18
| | | | |
* | | | | Remove redundant condition in `String::_humanize_digits()`Hugo Locurcio2019-10-041-3/+1
| | | | |
* | | | | Bind the `String::humanize_size` methodAndrii Doroshenko (Xrayez)2019-10-043-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | The method signature is also changed to use `uint64_t` instead of `size_t` for it to be Variant-compatible.
* | | | | Merge pull request #32524 from qarmin/fix_string_builder_null_memcpyRémi Verschelde2019-10-031-0/+3
|\ \ \ \ \ | | | | | | | | | | | | Don't add to StringBuilder empty String
| * | | | | Don't add to StringBuilder empty Stringqarmin2019-10-031-0/+3
| |/ / / /
* / / / / Fix small memory leak in PackedSourcePCK::try_open_packqarmin2019-10-031-2/+14
|/ / / /
* | | | Merge pull request #32249 from hbina/a_star_ignore_disabledRémi Verschelde2019-09-272-8/+8
|\ \ \ \ | | | | | | | | | | Add option to consider disable points
| * | | | Add option to consider disable pointsHanif Bin Ariffin2019-09-272-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, disabled points will not be considered when performing get_closest_point. This commit changes that by introducing an additional flag for this behavior. Related issue: #31814
* | | | | Merge pull request #31932 from huisedenanhai/masterRémi Verschelde2019-09-263-13/+16
|\ \ \ \ \ | | | | | | | | | | | | make core/Reference thread safe
| * | | | | make core/Reference thread safehuisedenanhai2019-09-043-13/+16
| | | | | |
* | | | | | Added an exit code to the blocking mode of OS::executeRuslan Mullayanov2019-09-261-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updated documentation accordingly. Fixes #31881.
* | | | | | Merge pull request #32230 from kawa-yoiko/oa-backward-shiftRémi Verschelde2019-09-261-29/+18
|\ \ \ \ \ \ | | | | | | | | | | | | | | Implement backward shift deletion for OAHashMap
| * | | | | | Implement backward shift deletion for OAHashMapShiqing2019-09-211-29/+18
| | | | | | |
* | | | | | | Merge pull request #32228 from damianday/patch-1Fabio Alessandrelli2019-09-261-10/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | TCP is_connected_to_host comparison error
| * | | | | | | Update stream_peer_tcp.cppDamian Day2019-09-251-10/+1
| | | | | | | |
| * | | | | | | TCP is_connected_to_host comparison errorDamian Day2019-09-211-1/+1
| |/ / / / / / | | | | | | | | | | | | | | We was returning true when the state was not connected, so we would never return true when the state was connected.