Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-09 | Set ShellExecuteW's verb to NULL - fixes #33388 | piratesephiroth | |
from https://docs.microsoft.com/en-us/windows/win32/api/shellapi/nf-shellapi-shellexecutew >the default verb is used, if available. If not, the "open" verb is used. If neither verb is available, the system uses the first verb listed in the registry. so "open" is redundant at best | |||
2019-11-09 | Merge pull request #33464 from KoBeWi/backdroid | Rémi Verschelde | |
Clarify how to handle go back button on mobile | |||
2019-11-09 | Merge pull request #33462 from KoBeWi/bulletproofreading | Rémi Verschelde | |
Fix some small text mistakes | |||
2019-11-09 | Merge pull request #33431 from Kaonnull/bugParticles2D_2 | Rémi Verschelde | |
Fixed the particles2D prematurely animation ending | |||
2019-11-09 | Clarify how to handle go back button on mobile | Tomasz Chabora | |
2019-11-08 | Fix some small text mistakes | Tomasz Chabora | |
2019-11-08 | Fixed prematurely ending animation of particles. | Simon Hardt | |
2019-11-08 | Merge pull request #33444 from BastiaanOlij/external_msaa | Rémi Verschelde | |
Make MSAA in GLES2 work with external textures for VR | |||
2019-11-08 | doc: Sync classref with current source | Rémi Verschelde | |
Fix incomplete binding. | |||
2019-11-08 | Merge pull request #33445 from kawa-yoiko/astar-soft-error | Rémi Verschelde | |
Emit an error rather than crash in A* | |||
2019-11-08 | Merge pull request #33446 from bruvzg/mingw_ucrt_fix | Rémi Verschelde | |
Fix MinGW/clang/LLD/UCRT build. | |||
2019-11-08 | Fix MinGW/clang/LLD/UCRT build. | bruvzg | |
2019-11-08 | Emit an error rather than crash in A* | Shiqing | |
2019-11-08 | Make MSAA work with external texture | Bastiaan Olij | |
2019-11-08 | Revert "fix #33188 MSAA depth buffer not used for external texture" | Bastiaan Olij | |
This reverts commit 418b035ddaaf9b40892ba88632c3aa6f3bf128b5. | |||
2019-11-08 | Merge pull request #33443 from dalexeev/master | Rémi Verschelde | |
Fixed initial title in audio buses editor | |||
2019-11-08 | Merge pull request #33441 from groud/clarify_shape_centered | Rémi Verschelde | |
Clarify shape_centered property | |||
2019-11-08 | Merge pull request #33440 from akien-mga/revert-32927 | Rémi Verschelde | |
Revert "Fixed TouchScreenButton::shape_centered having no effect" | |||
2019-11-08 | Fixed initial title in audio buses editor | Danil Alexeev | |
Previously, 'default_bus_layout.tres' was always displayed at startup, even if 'audio/default_bus_layout' was changed in Project Settings. | |||
2019-11-08 | Clarify shape_centered property | Gilles Roudière | |
2019-11-08 | Revert "Fixed TouchScreenButton::shape_centered having no effect" | Rémi Verschelde | |
This reverts commit 127c2d75ad109fe4a905f9061fcbc25d1e8b0ca9. This was a misunderstanding as #32725 is not a bug but expected behavior. Reverts #32927. Supersedes and closes #33436. | |||
2019-11-08 | Merge pull request #27742 from rxlecky/camera-replication | Rémi Verschelde | |
Game camera override | |||
2019-11-08 | Merge pull request #33052 from KoBeWi/naughty_sliders | Rémi Verschelde | |
Fix analog input in sliders | |||
2019-11-08 | Merge pull request #33291 from NeoSpark314/fix_#33188 | Rémi Verschelde | |
fix #33188 MSAA depth buffer not used for external texture | |||
2019-11-08 | Merge pull request #33376 from jamie-pate/master | Rémi Verschelde | |
Fix #24137 Different number of leading zeros on MINGW printf("%lg") | |||
2019-11-08 | Merge pull request #33430 from madmiraal/fix-eq-maybe-uninitialized | Rémi Verschelde | |
Fix r1 (and r2) may be used uninitialized warning in eq.cpp. | |||
2019-11-08 | Merge pull request #33437 from mashumafi/exclude-addons | Rémi Verschelde | |
Additional setting to prevent warnings in addons | |||
2019-11-08 | Fix 'r1' (and r2) may be used uninitialized warning in eq.cpp. | Marcel Admiraal | |
2019-11-08 | doc: Sync classref with current source | Rémi Verschelde | |
2019-11-07 | Add setting to exclude addons from script warnings | mashumafi | |
2019-11-07 | Fix #24137 Different number of leading zeros on MINGW printf("%lg") | Jamie Pate | |
Use _set_output_format() on MINGW platform to force _snprintf_s() to conform to the C99 standard and match the other platforms. Fixes #24137 | |||
2019-11-07 | Merge pull request #33412 from Calinou/doc-httprequest-example | Rémi Verschelde | |
Add an HTTPRequest usage example to the class reference | |||
2019-11-07 | Merge pull request #33432 from Chaosus/raycast_tutorial | Rémi Verschelde | |
Added link to raycasting tutorial to RayCast/RayCast2D | |||
2019-11-07 | Added link to raycasting tutorial to RayCast/RayCast2D | Yuri Roubinsky | |
2019-11-07 | Merge pull request #33427 from akien-mga/revert-shifting-32657 | Rémi Verschelde | |
Partial revert of #32657, undoing line shifting by 0.5 | |||
2019-11-07 | Merge pull request #30721 from NilsIrl/tab_key | Rémi Verschelde | |
Allow tab key to be used for shortcuts | |||
2019-11-07 | Add an HTTPRequest usage example to the class reference | Hugo Locurcio | |
This also adds a link to the "Making HTTP requests" tutorial. | |||
2019-11-07 | Fix analog input in sliders | Tomasz Chabora | |
2019-11-07 | Merge pull request #33423 from bruvzg/tablet_fixes | Rémi Verschelde | |
Fix graphic tablet input coordinates on Windows. | |||
2019-11-07 | Partial revert of #32657, undoing line shifting by 0.5 | Rémi Verschelde | |
As discussed in #32657, this can't be done here as lines can be used with a canvas scale, and this breaks them. A suggestion is to do the pixel shifting at matrix level instead. Fixes #33393. Fixes #33421. | |||
2019-11-07 | Merge pull request #33343 from KoBeWi/scene_tree_dusting | Rémi Verschelde | |
Another scene tree dock menu cleanup | |||
2019-11-07 | Merge pull request #30588 from Demiu/patch-1 | Rémi Verschelde | |
Fix 3D move_and_slide with stop_on_slope | |||
2019-11-07 | Merge pull request #32477 from aaronfranke/equal-approx-separate | Rémi Verschelde | |
Make is_equal_approx separate and make == exact again | |||
2019-11-07 | Merge pull request #33160 from aaronfranke/alphabetize-mathf | Rémi Verschelde | |
[Mono] Alphabetize Mathf | |||
2019-11-07 | Merge pull request #33257 from aaronfranke/printraw | Rémi Verschelde | |
Document behavior of GDScript printraw | |||
2019-11-07 | Merge pull request #33183 from silvanocerza/filesystem-tree-expand | Rémi Verschelde | |
Folders in FileSystem are not expanded on project save anymore | |||
2019-11-07 | Merge pull request #32997 from Calinou/editor-color-picker-add-tooltip | Rémi Verschelde | |
Add a tooltip to Color properties in the editor inspector | |||
2019-11-07 | Merge pull request #32900 from willnationsdev/variant-docs | Rémi Verschelde | |
Updated Variant docs with more detailed info/tuts. | |||
2019-11-07 | Merge pull request #31209 from ReyAnthony/master | Rémi Verschelde | |
Added more details for set_drag_preview() | |||
2019-11-07 | Merge pull request #32853 from OsamaElHariri/visual_script_setter_props_fix | Rémi Verschelde | |
Set the properties of a Set node after add_node |