summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-02-21Fix shader compilation error with anisotropyclayjohn
2022-02-21Merge pull request #58376 from novaplusplus/masterRémi Verschelde
Fixed issue with godot's changes to polypartition third-party code
2022-02-21Merge pull request #58400 from Faless/mp/4.x_repl_path_stopgapRémi Verschelde
[Net] Fix multi-peer path-only replication, optimize single peer object cache.
2022-02-21Merge pull request #58304 from BastiaanOlij/fix_queue_submitRémi Verschelde
vkQueueSubmit needs pWaitDstStageMask sized to waitSemaphoreCount
2022-02-21Merge pull request #58397 from Calinou/editor-font-preload-fix-typoRémi Verschelde
Fix typos in editor font preload dialog warning messages
2022-02-21Fixed issue with Godot modifications to polypartition.cpp third-party fileNova
2022-02-21[Net] Optimize object cache notification send for single peer.Fabio Alessandrelli
It used to always cycle all the peers when checking which one needed to be notified, now it only does that when the target is multiple (i.e. broadcast or exclusion).
2022-02-21Fix typos in editor font preload dialog warning messagesHugo Locurcio
2022-02-21[Net] Fix multi-peer path-only replication.Fabio Alessandrelli
It used to check if a net_id was ever assigned to that node to detect when to send the path confirm to the remote peer. This is wrong, because the same net_id is shared for all the remote peers, but sent one by one. Instead we now check if it's either not assigned or if the assigned net_id is a cache ID, and in that case ensure that the remote peer has been notified. This can be further improved by unifying the cache interface, but for now it's a fast fix to get path-only sync to work.
2022-02-21Merge pull request #58385 from Sauermann/fix-match-emptyMax Hilbrunner
Update doc for match: empty argument doesn't match anything
2022-02-21Merge pull request #58350 from kidrigger/patch-1Rémi Verschelde
2022-02-21Merge pull request #58315 from KoBeWi/fixibilityRémi Verschelde
2022-02-21Merge pull request #58275 from V-Sekai/attribute_parse_crash_fixRémi Verschelde
2022-02-21Merge pull request #58367 from V-Sekai/tileset_atlas_crash_fixRémi Verschelde
2022-02-21Update doc for match: empty argument doesn't match anythingMarkus Sauermann
2022-02-21Merge pull request #58351 from akien-mga/sync-gamecontrollerdbRémi Verschelde
2022-02-21Merge pull request #58372 from KoBeWi/orphan_ciRémi Verschelde
Fix 2D instance drop position
2022-02-21Merge pull request #58352 from timothyqiu/script-templateRémi Verschelde
Fix errors when updating script template list
2022-02-20Fix 2D instance drop positionkobewi
2022-02-20Merge pull request #58363 from Sauermann/fix-3maxRémi Verschelde
2022-02-20simplify calculation of max in grayscaleMarkus Sauermann
2022-02-20Fix nullptr error in _update_padded_texture on texture with no imageSaracenOne
2022-02-20Resolving suggestions on comment formatting.Anish Bhobe
2022-02-20Fix errors when updating script template listHaoyu Qiu
2022-02-20Sync controller mappings DB with SDL2 community repoRémi Verschelde
Synced with gabomdq/SDL_GameControllerDB@94b76208bc07a62a63575bc16da99411d325aac8
2022-02-20Merge pull request #58329 from Powerbyte7/patch-1Rémi Verschelde
2022-02-20Fixing iteration for extension level loading.Anish Bhobe
Extensions are not getting instantiating properly due to iteration calling the wrong levels for loading.
2022-02-20Merge pull request #58321 from akien-mga/vector3-forward-declaresRémi Verschelde
2022-02-20Merge pull request #58327 from megalobyte/fix-vs-call-crashRémi Verschelde
2022-02-19Merge pull request #57163 from ↵Rémi Verschelde
winterpixelgames/feature/allow-disable-atlas-texture-alpha-trim Allow disabling the alpha trim on texture atlas creation.
2022-02-19Merge pull request #58323 from Sauermann/fix-vertical-iconsRémi Verschelde
Fix vertical icons in Container Sizing
2022-02-19[HTML5] Add Stadia controller to databasePowerbyte7
Add web support for the Stadia controller.
2022-02-19Fix CanvasItem visibility propagationkobewi
2022-02-19Allow disabling the alpha trim on texture atlas creation.Jason Knight
Default to true
2022-02-19Don't process VisualScriptNodesmegalobyte
2022-02-19Fix vertical icons in container sizingMarkus Sauermann
2022-02-19Core: Use forward declares for Vector3/Vector3iRémi Verschelde
Add add Vector3 operator in Vector3i.
2022-02-19Merge pull request #58317 from naithar/fix/ios-drag-inputRémi Verschelde
2022-02-19[iOS] Fix incorrect method name for input dragging eventSergey Minakov
2022-02-19Merge pull request #58311 from Sauermann/fix-mouse-in-window-variable-nameRémi Verschelde
Update variable name to reflect usage
2022-02-19Update variable name to reflect usageMarkus Sauermann
2022-02-19Merge pull request #58042 from Sauermann/fix-viewport-border-notificationsRémi Verschelde
Fix Viewport mouse enter+exit notifications
2022-02-19Merge pull request #58308 from timothyqiu/dae-forRémi Verschelde
Fix crash when importing DAE model
2022-02-19Merge pull request #58307 from timothyqiu/normals-sizeRémi Verschelde
Fix crash when importing small GLTF mesh
2022-02-19Merge pull request #58306 from timothyqiu/create-nodeRémi Verschelde
Fix crash in Create New Node dialog with certain user-created scripts
2022-02-19Merge pull request #58166 from Zylann/fix_binary_resource_with_doublesRémi Verschelde
Fix loading of binary resources with 64-bit floats
2022-02-19Merge pull request #58205 from Zylann/fix_variant_encode_with_doublesRémi Verschelde
Add missing flag when encode_variant writes math types with doubles
2022-02-19Fix crash when importing DAE modelHaoyu Qiu
2022-02-19Fix crash when importing small GLTF meshHaoyu Qiu
2022-02-19Fix crash in Create New Node dialog with certain user-created scriptsHaoyu Qiu