Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-09 | Merge pull request #30438 from Calinou/use-color-constructors | Rémi Verschelde | |
Use base `Color()` constructors instead of `Color::html()` | |||
2019-07-09 | Merge pull request #30404 from Calinou/add-spotlight-configuration-warning | Rémi Verschelde | |
Add a configuration warning when using ultrawide SpotLight with shadows | |||
2019-07-09 | Merge pull request #30435 from bojidar-bg/14513-show-matches-count | Rémi Verschelde | |
Display a count of matches when searching in the code editor | |||
2019-07-09 | Merge pull request #30434 from Faless/ws/wslay_fix_handshake_break | Rémi Verschelde | |
Fix WebSocketClient consuming data during hanshake | |||
2019-07-09 | Merge pull request #30433 from akien-mga/cryptocore-string-escape | Rémi Verschelde | |
SCons: Fix MBEDTLS_CONFIG_FILE string escape | |||
2019-07-09 | Merge pull request #30432 from Faless/fix/string_http_unescape | Rémi Verschelde | |
Add NULL-terminator the string passed to strtol. | |||
2019-07-09 | Merge pull request #30428 from neikeq/gitcheckout-b | Rémi Verschelde | |
Misc Mono Fixes | |||
2019-07-09 | Add a configuration warning when using ultrawide SpotLight with shadows | Hugo Locurcio | |
This partially addresses #12028. | |||
2019-07-08 | Use base `Color()` constructors instead of `Color::html()` | Hugo Locurcio | |
This results in slightly smaller binaries (-17 KB for an editor binary) as no strings need to be allocated. | |||
2019-07-08 | Display a count of matches when searching in the code editor | Bojidar Marinov | |
Fixes #14513 | |||
2019-07-08 | Fix WebSocketClient consuming data during hanshake | Fabio Alessandrelli | |
Was missing a break of the while loop on connection. This potentially caused early data frames to be trashed. | |||
2019-07-08 | Mono: Fix build errors with tools=no | Ignacio Etcheverry | |
2019-07-08 | C#: Fix some crashes during assemblies reloading | Ignacio Etcheverry | |
2019-07-08 | Fix Godot.Object.ToString() infinite recursion | Ignacio Etcheverry | |
Should not be using Variant to String conversion as that would call ToString() again | |||
2019-07-08 | Fix --generate-mono-glue bug when directory doesn't exist | Ignacio Etcheverry | |
DirAccess::get_full_path(path) only works if the path exists. Implement our own abspath function. | |||
2019-07-08 | SCons: Fix MBEDTLS_CONFIG_FILE string escape | Rémi Verschelde | |
Fixes #30431, regression from #30277. | |||
2019-07-08 | Add NULL-terminator the string passed to strtol. | Fabio Alessandrelli | |
This is actually expected by the function although it was apparently working in GCC without the terminator, it breaks (at least some) clang versions. | |||
2019-07-08 | Fix C# bindings detection of abstract classes | Ignacio Etcheverry | |
ClassDB::can_instance was changed recently breaking our code, as the editor is not yet initialized. Check ClassInfo::creation_func directly. | |||
2019-07-08 | Fix InvalidCastException when loading script metadata | Ignacio Etcheverry | |
Old value wasn't string so we have to keep that in mind | |||
2019-07-08 | Merge pull request #29613 from Calinou/doctool-create-directories | Rémi Verschelde | |
Make `--doctool` create directories if they don't exist | |||
2019-07-08 | Merge pull request #30361 from LikeLakers2/camera2d-offset-ignores-limit | Rémi Verschelde | |
Camera2D's offset now ignores the limit property | |||
2019-07-08 | Merge pull request #30384 from Anutrix/a-filter-feature | Rémi Verschelde | |
Added filter to SceneTreeDialog | |||
2019-07-08 | Merge pull request #30422 from Faless/net/tcp_connect_timeout | Rémi Verschelde | |
Add TCP connect timeout. | |||
2019-07-08 | Merge pull request #30425 from bojidar-bg/30348-30012-node-boundaries | Rémi Verschelde | |
Fix some issues with TileMap's and other nodes' boundaries | |||
2019-07-08 | Fix some issue with TileMap's and other nodes' boundaries | Bojidar Marinov | |
Fixes #30348 Addresses a small part of #30012 | |||
2019-07-08 | Add TCP connect timeout. | Fabio Alessandrelli | |
Default timeout is 30 seconds (i.e. after 30 seconds of calling connect_to_host if the TCP peer is not connected the connection will error out). This value can be configured in project settings: `network/limits/tcp/connect_timeout_seconds` | |||
2019-07-08 | Merge pull request #30408 from Meriipu/tree_buttondisable | Rémi Verschelde | |
TreeItem: Added a setter for the disabled-property of buttons | |||
2019-07-08 | Merge pull request #30392 from hbina/redundant_check_pool_vector | Rémi Verschelde | |
Removed a redundant check in PoolVector | |||
2019-07-08 | Merge pull request #30380 from KoBeWi/controlraiser | Rémi Verschelde | |
Clarify better what Node.raise does | |||
2019-07-08 | Merge pull request #30374 from BastiaanOlij/fix_ios_privileges | Rémi Verschelde | |
iOS Microphone and Camera privileges improvements | |||
2019-07-08 | Merge pull request #30373 from sntdevco/patch-1 | Rémi Verschelde | |
Improve localization | |||
2019-07-08 | Merge pull request #30419 from Faless/ws/wslay_server_proto | Rémi Verschelde | |
(Re-)Implement subprotocols in websocket server. | |||
2019-07-08 | Merge pull request #30407 from qarmin/small_fixess | Rémi Verschelde | |
Fixes minor issues found by static analyzer | |||
2019-07-08 | Merge pull request #30413 from Calinou/wav-import-hide-max-rate-hz | Rémi Verschelde | |
Hide "Max Rate Hz" if "Max Rate" is unchecked when importing WAV sample | |||
2019-07-08 | Merge pull request #30412 from Larpon/docs/string-hex_to_int-improve | Rémi Verschelde | |
Improve hex_to_int documentation | |||
2019-07-08 | Merge pull request #30414 from Larpon/docs/string-http_escape-methods | Rémi Verschelde | |
Provide documentation for String http_escape() and http_unescape() methods | |||
2019-07-08 | (Re-)Implement subprotocols in websocket server. | Fabio Alessandrelli | |
2019-07-07 | Removed a redundant check in PoolVector | hbina085 | |
The set method of PoolVector<T> performs an indexing check twice. | |||
2019-07-07 | Fixes minor issues found by static analyzer | qarmin | |
2019-07-07 | Provide documentation for String http_escape() and http_unescape() methods | lmp | |
2019-07-07 | Clearify how hex_to_int expects a '0x' prefixed string. Provide a small ↵ | lmp | |
hex_to_int example | |||
2019-07-07 | Hide "Max Rate Hz" if "Max Rate" is unchecked when importing WAV sample | Hugo Locurcio | |
2019-07-07 | Merge pull request #30406 from Anutrix/tiny-change | Rémi Verschelde | |
Removed a pair of empty braces - A Typo fix | |||
2019-07-07 | Removed a pair of empty braces | unknown | |
2019-07-07 | TreeItem: Added a setter for the disabled-property of buttons | Meriipu | |
2019-07-07 | Merge pull request #30357 from simonpuchert/spheres | Rémi Verschelde | |
Particles / CPUParticles: Return uniform density spheres. | |||
2019-07-07 | Merge pull request #30388 from remram44/its | Rémi Verschelde | |
DOC: Fix spelling | |||
2019-07-06 | DOC: Fix spelling | Remi Rampin | |
See also https://github.com/godotengine/godot-docs/pull/2595 | |||
2019-07-06 | Merge pull request #30382 from simonpuchert/geo-opt | Rémi Verschelde | |
Some small optimizations in core/math/geometry.h. | |||
2019-07-06 | Merge pull request #30363 from YeldhamDev/viewport_size_stretch_property | Rémi Verschelde | |
Make 'size_override_stretch' a property in 'Viewport' |