Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-08-03 | [Net] Fix IP address resolution incorrectly locking the main thread. | Fabio Alessandrelli | |
This seems to be a pretty old bug, older then originally reported (at least under certain circumstances). The IP singleton uses a resolve queue so developers can queue hostnames for resolution in a separate while keeping the main thread unlocked (address-resolution OS functions are blocking, and could block for a long time in case of network disruption). In most places though, the address resolution function was called with the mutex locked, causing other functions (querying status, queueing another hostname, ecc) to block until that resolution ended. This commit ensures that all calls to OS address resolution are done with the mutex unlocked. | |||
2021-08-02 | Merge pull request #51039 from nekomatata/layer-grid-32 | Rémi Verschelde | |
Refactor layer property editor grid | |||
2021-08-02 | Merge pull request #51144 from Chaosus/vs_version | Yuri Roubinsky | |
Makes dictionary instead of string for visual shader version | |||
2021-08-02 | Merge pull request #51168 from akien-mga/dependency-move-to-trash | Rémi Verschelde | |
Dependency editor: Edit message about move to trash | |||
2021-08-02 | Merge pull request #50122 from Paulb23/code_edit_auto_brace_completion | Rémi Verschelde | |
2021-08-02 | Makes dictionary instead of string for visual shader version | Yuri Roubinsky | |
Update doc/classes/VisualShader.xml Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro> | |||
2021-08-02 | Merge pull request #51192 from timothyqiu/sdfgi-enum-range | Rémi Verschelde | |
Validates set_sdfgi_cascades argument range | |||
2021-08-02 | Merge pull request #51187 from timothyqiu/vertex-index-3 | Rémi Verschelde | |
Fix crash when number of indices to optimize is not a multiple of 3 | |||
2021-08-02 | Merge pull request #51190 from timothyqiu/vs-node | Rémi Verschelde | |
Validates VisualScript.add_node input node | |||
2021-08-02 | Validates set_sdfgi_cascades argument range | Haoyu Qiu | |
2021-08-02 | Validates VisualScript.add_node input node | Haoyu Qiu | |
2021-08-02 | Merge pull request #51185 from timothyqiu/tile-data-enum-range | Rémi Verschelde | |
Validate TileData enum range before using it as index | |||
2021-08-02 | Merge pull request #51004 from groud/tilemap_layers | Rémi Verschelde | |
Implements TileMap layers and move TileSetPlugins's functions to the TileMap node instead | |||
2021-08-02 | Fix crash when number of indices to optimize is not a multiple of 3 | Haoyu Qiu | |
2021-08-02 | Validate TileData enum range before using it as index | Haoyu Qiu | |
2021-08-02 | Merge pull request #51173 from RandomShaper/tidy_property_reversion | Rémi Verschelde | |
Fix up property reversion | |||
2021-08-02 | Merge pull request #51176 from KoBeWi/nullbind | Rémi Verschelde | |
Add null check to Tween.bind_node() | |||
2021-08-02 | Merge pull request #51172 from Faless/io/4.x_64_array_marshalls | Rémi Verschelde | |
[Marshalls] Fix Float64Array and Int64Array serialization. | |||
2021-08-02 | Merge pull request #51170 from timothyqiu/spin-slider-osx | Rémi Verschelde | |
Use Command+Drag in EditSpinSlider on macOS | |||
2021-08-02 | Add null check to Tween.bind_node() | kobewi | |
2021-08-02 | Fix up property reversion | Pedro J. Estébanez | |
2021-08-02 | Implements TileMap layers and move TileSetPlugins's functions to the TileMap ↵ | Gilles Roudière | |
node instead | |||
2021-08-02 | [Marshalls] Fix Float64Array and Int64Array serialization. | Fabio Alessandrelli | |
One was incorrectly reading the size (potentially causing out-of-buffer read), the other also potentially causing out-of-buffer write during encoding. | |||
2021-08-02 | Merge pull request #49783 from aaronfranke/real-editor-plugins | Rémi Verschelde | |
Use real_t in editor plugins | |||
2021-08-02 | Use Command+Drag in EditSpinSlider on macOS | Haoyu Qiu | |
2021-08-02 | Merge pull request #50430 from goostengine/ctrl-enter-commit | Rémi Verschelde | |
VCS: Allow to stage and commit all files with Ctrl + Enter | |||
2021-08-02 | Dependency editor: Edit message about move to trash | Rémi Verschelde | |
Fixes #47106. | |||
2021-08-01 | Use real_t in editor plugins | Aaron Franke | |
Also use const more often and delete dead code in CanvasItemEditor | |||
2021-08-01 | Merge pull request #51119 from pycbouh/control-theme-overrides-rename | Rémi Verschelde | |
Make theme item overrides more obvious in the Inspector | |||
2021-08-01 | Merge pull request #50942 from BastiaanOlij/cubemap_raster | Rémi Verschelde | |
Porting cubemap compute shaders to raster for the mobile renderer | |||
2021-08-01 | Clean up and complete CodeEdit inspector and docs | Paulb23 | |
2021-08-01 | Porting cubemap compute shaders to raster for the mobile renderer | Bastiaan Olij | |
2021-08-01 | Merge pull request #51139 from Chaosus/fix_canvasitem_drag_warning | Rémi Verschelde | |
Prevent warning spam to console when dragging a CanvasItem in container | |||
2021-08-01 | Move symbol lookup into CodeEdit | Paulb23 | |
2021-08-01 | Move line length guidelines into CodeEdit | Paulb23 | |
2021-08-01 | Move brace matching into CodeEdit | Paulb23 | |
2021-08-01 | Move auto brace completion to CodeEdit | Paulb23 | |
2021-08-01 | Merge pull request #51112 from Chaosus/fix_doc_drag_crash | Rémi Verschelde | |
Fix crash on doc dragging in script list panel | |||
2021-08-01 | Merge pull request #51130 from timothyqiu/i18n-android-export | Rémi Verschelde | |
Make progress and errors translatable when exporting to Android | |||
2021-08-01 | Prevent warning spam to console when dragging a CanvasItem in container | Yuri Roubinsky | |
2021-08-01 | Fix crash on doc dragging in script list panel | Yuri Roubinsky | |
2021-08-01 | Make progress and errors translatable when exporting to Android | Haoyu Qiu | |
2021-08-01 | Merge pull request #48958 from ↵ | Rémi Verschelde | |
kleonc/astar-get_available_point_id-start-from-zero Astar::get_available_point_id Return 0 instead of 1 when empty | |||
2021-08-01 | Merge pull request #51036 from winterpixelgames/master-ws-fix | Rémi Verschelde | |
WebsocketPeer outbound buffer fixes and buffer size query | |||
2021-08-01 | Merge pull request #51136 from akien-mga/scons-4.2.0 | Rémi Verschelde | |
Windows: Fix build with SCons 4.2.0 | |||
2021-08-01 | Merge pull request #51124 from YeldhamDev/local_editor_dup_fix | Rémi Verschelde | |
Fix being able to add duplicate files in the Localization editor | |||
2021-08-01 | Windows: Fix build with SCons 4.2.0 | Rémi Verschelde | |
2021-07-31 | Websocket peer outbound buffer fixes. Expose outbound buffered amount. | Jordan Schidlowsky | |
2021-07-31 | Fix being able to add duplicate files in the Localization editor | Michael Alexsander | |
2021-07-31 | Make theme item overrides more obvious in the Inspector | Yuri Sizov | |