summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-09-22[macOS] Add empty translation files to the editor app bundle, to allow ↵bruvzg
translation detection by the OS.
2021-09-22Merge pull request #52808 from AnilBK/simplify-logicRémi Verschelde
2021-09-22Merge pull request #52927 from akien-mga/ci-debug-then-stripRémi Verschelde
2021-09-22Merge pull request #51104 from bruvzg/improve_invalid_non_graph_char_detectionRémi Verschelde
2021-09-22Merge pull request #52934 from akien-mga/etcpak-7c3cb6fRémi Verschelde
etcpak: Update to upstream commit 7c3cb6f (Jul 29, 2021)
2021-09-22Merge pull request #52933 from akien-mga/vulkan-1.2.190Rémi Verschelde
2021-09-22Improve invalid non-graphic glyph detection.bruvzg
2021-09-22Merge pull request #52931 from Chaosus/fix_shader_comparison_crashRémi Verschelde
2021-09-22etcpak: Update to upstream commit 7c3cb6f (Jul 29, 2021)Rémi Verschelde
Adds a new `useHeuristics` compression mode for ETC2. Upstream defaults to enable it so we do the same.
2021-09-22Merge pull request #52932 from JFonS/upd_ebr_readmeRémi Verschelde
2021-09-22Vulkan: Update volk and Vulkan SDK components to 1.2.190Rémi Verschelde
2021-09-22Merge pull request #52930 from akien-mga/nanosvg-ccdb199Rémi Verschelde
2021-09-22Update thirdparty README for EmbreeJoan Fons
2021-09-22Prevents editor crash when compare with negative float in shaderYuri Roubinsky
2021-09-22nanosvg: Sync with upstream ccdb199Rémi Verschelde
Includes fixes for a memory corruption bug (CVE-2019-1000032) and possible division by zero.
2021-09-22Merge pull request #52928 from bruvzg/var_coord_prefillRémi Verschelde
2021-09-22Use Rect2's get_end().Anilforextra
2021-09-22Fill variation coordinates dictionary with default values when FontData is ↵bruvzg
set/added.
2021-09-22Merge pull request #52923 from SirQuartz/paint-toolRémi Verschelde
2021-09-22CI: Build test binaries with debug symbols, then stripRémi Verschelde
This allows having good stacktraces when the tests crash.
2021-09-22Merge pull request #47422 from skyace65/EventPositionRémi Verschelde
2021-09-22Merge pull request #52921 from timothyqiu/view-name-typoRémi Verschelde
2021-09-21Fix paint tool duplicate shortcutNicholas Huelin
This pull request fixes an issue where the pain tool in tile_map_editor.cpp had two different shortcuts for the same tool.
2021-09-22Fix 3D view name typoHaoyu Qiu
2021-09-21Add note that for _gui_input(event) event position is relative to the ↵skyace65
control origin
2021-09-21Merge pull request #52889 from fabriceci/multiple_collision-support-fabCamille Mohr-Daurat
Port 2D improvements to move and slide 3D (with extras)
2021-09-22Port 2D improvement to move and slide 3Dfabriceci
Co-authored-by: Camille Mohr-Daurat <pouleyketchoup@gmail.com>
2021-09-21Merge pull request #52913 from Paulb23/text-edit-search-themeRémi Verschelde
2021-09-21Merge pull request #52878 from AnilBK/add-get-centerRémi Verschelde
2021-09-21Added search colors to TextEdit and CodeEdit themePaulb23
2021-09-21Merge pull request #52901 from nonunknown/masterRémi Verschelde
2021-09-21Merge pull request #52906 from vnen/gdscript-show-error-on-yieldRémi Verschelde
2021-09-21Merge pull request #52905 from vnen/gdscript-single-line-declarationRémi Verschelde
2021-09-21Merge pull request #52903 from vnen/gdscript-signal-multilineRémi Verschelde
2021-09-21GDScript: Show specific error when "yield" is usedGeorge Marques
To help people porting code, it gives a hint to use "await" instead of a generic error.
2021-09-21GDScript: Allow classes declaration to be done in single lineGeorge Marques
Incidentally, allow multiple statements in single line functions when using semicolon as a terminator.
2021-09-21GDScript: Allow multiple lines in signal parameters declarationGeorge Marques
2021-09-21Fix alpha typo in code completion colornonunknown
2021-09-21Merge pull request #52898 from vnen/gdscript-assigment-conversion-fixRémi Verschelde
GDScript: Remove conversion assign mistakenly done when unneeded
2021-09-21Add Get Center Method for Rect2/Rect2i and AABB.Anilforextra
2021-09-21i18n: Sync translations with WeblateRémi Verschelde
(cherry picked from commit 323c3ee9db5414dbd79748a98e21446dddecb057)
2021-09-21Merge pull request #52877 from Calinou/add-print-verboseRémi Verschelde
Add `print_verbose()` built-in function to print in verbose mode only
2021-09-21GDScript: Remove conversion assign mistakenly done when unneededGeorge Marques
2021-09-21Merge pull request #51280 from ↵Rémi Verschelde
EricEzaM/shortcut-remove-preprocessor-defines-add-overrides Added ability to override shortcut definitions for OSX (remove preprocessor defines)
2021-09-21Merge pull request #38256 from ↵Rémi Verschelde
EricEzaM/add-option-update-spinbox-on-text-changed Added option for spinbox to update it's value on line edit 'text_changed' rather than 'text_entered'
2021-09-22Added ability to override shortcut definitions for OSX (remove preprocessor ↵Eric M
defines)
2021-09-21Add `print_verbose()` built-in function to print in verbose mode onlyHugo Locurcio
This can be used as a shorthand for: if OS.is_stdout_verbose(): print("...") Unlike `print_debug()`, this works in release builds too and can be toggled off in debug builds.
2021-09-21Merge pull request #52852 from Chaosus/gds_fix_constantsYuri Roubinsky
Prevent local constant default value from incorrect overriding by a global constant in GDScript autocompletion
2021-09-21Added option for spinbox to update it's value on line edit 'text_changed' ↵Eric M
rather than 'text_entered'
2021-09-21Merge pull request #51655 from ↵Rémi Verschelde
RevoluPowered/improve-gdscript-code-editor-performance Improve GDScript Editor performance