Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-12 | Added "Is" and "Compare" functions to visual shaders | Chaosus | |
2019-07-09 | Merge pull request #30450 from hbina/fix_issue_30063_and_similar | Rémi Verschelde | |
Fix issues where translations doesn't work because of white space in %s | |||
2019-07-09 | Fix issues where translations doesn't work | hbina085 | |
The crux of the issue is a white space between % and s. I have fixed similar problems than found in #30063 Edited by @akien-mga to fix some more occurrences on other placeholders. | |||
2019-07-09 | i18n: Sync translation template with current source | Rémi Verschelde | |
2019-07-09 | i18n: Sync translations with Weblate | Rémi Verschelde | |
2019-07-09 | Merge pull request #30449 from hbina/fix_issue_30260 | Rémi Verschelde | |
Clarify what %APPDATA% expands to in Windows | |||
2019-07-09 | Clarify what %APPDATA% expands to in Windows | hbina085 | |
Linux users should be familiar with "~" so I think it might be unnecessary. Also changed the file separator in the description to use Windows' instead. | |||
2019-07-09 | TreeItem: Rename new button disable method to set_button_disabled | Rémi Verschelde | |
Follow-up to #30408. Also sync classref with current source. | |||
2019-07-09 | Merge pull request #28190 from griant/test | Rémi Verschelde | |
fix improper uncommenting behavior in TextEditor | |||
2019-07-09 | Merge pull request #30125 from akien-mga/docdata-expose-parametric-setget | Rémi Verschelde | |
DocData: Re-expose parametric setters and getters | |||
2019-07-09 | Merge pull request #30443 from Calinou/improve-node-configuration-warnings | Rémi Verschelde | |
Improve the node configuration warning display | |||
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-09 | Improve the node configuration warning display | Hugo Locurcio | |
- Refer to properties explicitly when possible - When multiple warnings are returned, always separate them by one blank line to make them easier to distinguish - Improve grammar and formatting | |||
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. |