summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-07-09Merge pull request #30438 from Calinou/use-color-constructorsRémi Verschelde
Use base `Color()` constructors instead of `Color::html()`
2019-07-09Merge pull request #30404 from Calinou/add-spotlight-configuration-warningRémi Verschelde
Add a configuration warning when using ultrawide SpotLight with shadows
2019-07-09Merge pull request #30435 from bojidar-bg/14513-show-matches-countRémi Verschelde
Display a count of matches when searching in the code editor
2019-07-09Merge pull request #30434 from Faless/ws/wslay_fix_handshake_breakRémi Verschelde
Fix WebSocketClient consuming data during hanshake
2019-07-09Merge pull request #30433 from akien-mga/cryptocore-string-escapeRémi Verschelde
SCons: Fix MBEDTLS_CONFIG_FILE string escape
2019-07-09Merge pull request #30432 from Faless/fix/string_http_unescapeRémi Verschelde
Add NULL-terminator the string passed to strtol.
2019-07-09Merge pull request #30428 from neikeq/gitcheckout-bRémi Verschelde
Misc Mono Fixes
2019-07-09Add a configuration warning when using ultrawide SpotLight with shadowsHugo Locurcio
This partially addresses #12028.
2019-07-08Use 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-08Display a count of matches when searching in the code editorBojidar Marinov
Fixes #14513
2019-07-08Fix WebSocketClient consuming data during hanshakeFabio Alessandrelli
Was missing a break of the while loop on connection. This potentially caused early data frames to be trashed.
2019-07-08Mono: Fix build errors with tools=noIgnacio Etcheverry
2019-07-08C#: Fix some crashes during assemblies reloadingIgnacio Etcheverry
2019-07-08Fix Godot.Object.ToString() infinite recursionIgnacio Etcheverry
Should not be using Variant to String conversion as that would call ToString() again
2019-07-08Fix --generate-mono-glue bug when directory doesn't existIgnacio Etcheverry
DirAccess::get_full_path(path) only works if the path exists. Implement our own abspath function.
2019-07-08SCons: Fix MBEDTLS_CONFIG_FILE string escapeRémi Verschelde
Fixes #30431, regression from #30277.
2019-07-08Add 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-08Fix C# bindings detection of abstract classesIgnacio Etcheverry
ClassDB::can_instance was changed recently breaking our code, as the editor is not yet initialized. Check ClassInfo::creation_func directly.
2019-07-08Fix InvalidCastException when loading script metadataIgnacio Etcheverry
Old value wasn't string so we have to keep that in mind
2019-07-08Merge pull request #29613 from Calinou/doctool-create-directoriesRémi Verschelde
Make `--doctool` create directories if they don't exist
2019-07-08Merge pull request #30361 from LikeLakers2/camera2d-offset-ignores-limitRémi Verschelde
Camera2D's offset now ignores the limit property
2019-07-08Merge pull request #30384 from Anutrix/a-filter-featureRémi Verschelde
Added filter to SceneTreeDialog
2019-07-08Merge pull request #30422 from Faless/net/tcp_connect_timeoutRémi Verschelde
Add TCP connect timeout.
2019-07-08Merge pull request #30425 from bojidar-bg/30348-30012-node-boundariesRémi Verschelde
Fix some issues with TileMap's and other nodes' boundaries
2019-07-08Fix some issue with TileMap's and other nodes' boundariesBojidar Marinov
Fixes #30348 Addresses a small part of #30012
2019-07-08Add 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-08Merge pull request #30408 from Meriipu/tree_buttondisableRémi Verschelde
TreeItem: Added a setter for the disabled-property of buttons
2019-07-08Merge pull request #30392 from hbina/redundant_check_pool_vectorRémi Verschelde
Removed a redundant check in PoolVector
2019-07-08Merge pull request #30380 from KoBeWi/controlraiserRémi Verschelde
Clarify better what Node.raise does
2019-07-08Merge pull request #30374 from BastiaanOlij/fix_ios_privilegesRémi Verschelde
iOS Microphone and Camera privileges improvements
2019-07-08Merge pull request #30373 from sntdevco/patch-1Rémi Verschelde
Improve localization
2019-07-08Merge pull request #30419 from Faless/ws/wslay_server_protoRémi Verschelde
(Re-)Implement subprotocols in websocket server.
2019-07-08Merge pull request #30407 from qarmin/small_fixessRémi Verschelde
Fixes minor issues found by static analyzer
2019-07-08Merge pull request #30413 from Calinou/wav-import-hide-max-rate-hzRémi Verschelde
Hide "Max Rate Hz" if "Max Rate" is unchecked when importing WAV sample
2019-07-08Merge pull request #30412 from Larpon/docs/string-hex_to_int-improveRémi Verschelde
Improve hex_to_int documentation
2019-07-08Merge pull request #30414 from Larpon/docs/string-http_escape-methodsRé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-07Removed a redundant check in PoolVectorhbina085
The set method of PoolVector<T> performs an indexing check twice.
2019-07-07Fixes minor issues found by static analyzerqarmin
2019-07-07Provide documentation for String http_escape() and http_unescape() methodslmp
2019-07-07 Clearify how hex_to_int expects a '0x' prefixed string. Provide a small ↵lmp
hex_to_int example
2019-07-07Hide "Max Rate Hz" if "Max Rate" is unchecked when importing WAV sampleHugo Locurcio
2019-07-07Merge pull request #30406 from Anutrix/tiny-changeRémi Verschelde
Removed a pair of empty braces - A Typo fix
2019-07-07Removed a pair of empty bracesunknown
2019-07-07TreeItem: Added a setter for the disabled-property of buttonsMeriipu
2019-07-07Merge pull request #30357 from simonpuchert/spheresRémi Verschelde
Particles / CPUParticles: Return uniform density spheres.
2019-07-07Merge pull request #30388 from remram44/itsRémi Verschelde
DOC: Fix spelling
2019-07-06DOC: Fix spellingRemi Rampin
See also https://github.com/godotengine/godot-docs/pull/2595
2019-07-06Merge pull request #30382 from simonpuchert/geo-optRémi Verschelde
Some small optimizations in core/math/geometry.h.
2019-07-06Merge pull request #30363 from YeldhamDev/viewport_size_stretch_propertyRémi Verschelde
Make 'size_override_stretch' a property in 'Viewport'