summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-02-22Input: Swap events for ui_redo to favor Shift+Ctrl+Z over Ctrl+YRémi Verschelde
That's the most common one we've been using for the general editor, and while the script editor also supports Ctrl+Y, it should have lower priority. In theory this code should make both be supported the same but for some reason the general editor only seems to use the first entry (the script editor does support both).
2021-02-22Merge pull request #46243 from Calinou/improve-get-node-error-messageRémi Verschelde
Improve the `get_node()` error message to be more descriptive
2021-02-22Merge pull request #46309 from akien-mga/ci-no-debug-symbolsRémi Verschelde
CI: Build without debug symbols to reduce cache size
2021-02-22Merge pull request #45934 from angad-k/fix-smoothstep-function-documentationRémi Verschelde
fix minor issue in smooth step function's documentation
2021-02-22Improve the `get_node()` error message to be more descriptiveHugo Locurcio
- Mention the origin of the `get_node()` call. - Mention whether the attempted path is absolute or relative. See #46214.
2021-02-22CI: Build without debug symbols to reduce cache sizeRémi Verschelde
We often hit "Too Many Requests" errors when uploading the cache with `actions/cache` because there's a limit of 10 GB every 5 minutes, and we can easily go over it when we amend or merge several PRs in a short timespan. This will make the CI artifacts less useful for debugging crashes but there's no real way around this.
2021-02-22i18n: Sync translations with WeblateRémi Verschelde
(cherry picked from commit d0bc9144913a831500a24fc4d8d9f4cb3fd13286)
2021-02-22Merge pull request #46263 from dalexeev/fix-help-shortcut-2Rémi Verschelde
Fix "editor/editor_help" shortcut (again)
2021-02-22Merge pull request #46253 from asmaloney/docs-themeRémi Verschelde
[docs] Clarification on theme's get_stylebox
2021-02-22Merge pull request #46296 from madmiraal/remove-unused-variablesRémi Verschelde
Remove unused variables from full-size.html
2021-02-21Merge pull request #46230 from gongpha/keep-hue-valueRémi Verschelde
Keep Hue value when Saturation or Value is zero
2021-02-21Merge pull request #46297 from madmiraal/add-missing-semicolonsRémi Verschelde
Add missing semicolons to webxr.eterns.js
2021-02-21Merge pull request #46295 from Calinou/doc-spinbox-themingRémi Verschelde
Document theming a SpinBox's background
2021-02-21Document theming a SpinBox's backgroundHugo Locurcio
This closes #46248.
2021-02-21Add missing semicolons to webxr.eterns.jsMarcel Admiraal
2021-02-21Remove unused variables from full-size.htmlMarcel Admiraal
2021-02-21Merge pull request #46277 from angad-k/PathFollow2D-unit-testRémi Verschelde
PathFollow2D unit test
2021-02-21set up PathFollow2D unit testAngad Kambli
2021-02-21Merge pull request #46286 from kleonc/label_set_lines_skippedRémi Verschelde
Label::set_lines_skipped Fail if passed a negative value
2021-02-21Merge pull request #43731 from Calinou/test-add-resourceRémi Verschelde
Add a test suite for Resource
2021-02-21Merge pull request #46284 from kleonc/line2d_set_point_positionRémi Verschelde
Line2D::set_point_position Fail if passed index is out of bounds
2021-02-21Merge pull request #46279 from ↵Rémi Verschelde
hilfazer/prevent_select_noneditable_nodes_in_editors Prevent selecting hidden nodes in 3D and Canvas Item editors
2021-02-21Label::set_lines_skipped Fail if passed a negative valuekleonc
2021-02-21Line2D::set_point_position Fail if passed index is out of boundskleonc
2021-02-21Merge pull request #46244 from Calinou/editorconfig-yaml-spacesRémi Verschelde
Use space indentation for all YAML files in `.editorconfig`
2021-02-21Merge pull request #46268 from Calinou/doc-button-touchscreenbuttonRémi Verschelde
Document that Button doesn't interpret touch input (= no multitouch)
2021-02-21Merge pull request #46275 from Chaosus/shader_fix_struct_crashRémi Verschelde
Prevents shader crash if two struct with the same name are declared
2021-02-21Prevent selecting hidden nodes in 3D and Canvas Item editorshilfazer
2021-02-21Prevents shader crash if two struct with the same name are declaredYuri Roubinsky
2021-02-21Merge pull request #46272 from Chaosus/shader_fix_struct_crashRémi Verschelde
Prevents shader crash if passing invalid struct to the return statement
2021-02-21Merge pull request #38565 from nekomatata/export-default-valuesRémi Verschelde
Fixed export var default value in PackedScene when script is not loaded in editor
2021-02-21Prevents shader crash if passing invalid struct to the return statementYuri Roubinsky
2021-02-21Document that Button doesn't interpret touch input (= no multitouch)Hugo Locurcio
TouchScreenButton should be used for gameplay actions instead.
2021-02-21Fix "editor/editor_help" shortcut (again)Danil Alexeev
2021-02-20Add a test suite for ResourceHugo Locurcio
2021-02-20Merge pull request #46256 from hpvb/dri-prime-amd-masterHein-Pieter van Braam
Add 'AMD' GPU vendor name to PRIME detector
2021-02-20Merge pull request #46255 from hpvb/fix-clang-atomicRémi Verschelde
Use -latomic when linking whe using clang on Linux
2021-02-20Add 'AMD' GPU vendor name to PRIME detectorHein-Pieter van Braam-Stewart
Apparently some recent Mesa version also changed AMD's vendor string. In addition I found a small uninitialized variable that's corrected now.
2021-02-20Use -latomic when linking whe using clang on LinuxHein-Pieter van Braam-Stewart
According to the LLVM documentation when using GNU's libstdc++ clang will not automatically link with -latomic. This is necessary since we merged c++11 atomics support. This fixes linking using Clang on Linux
2021-02-20[docs] Clarification on theme's get_styleboxAndy Maloney
Remove reference to "icon" (must have been a copy-paste error) & clarify where to find out what names & node_types are valid.
2021-02-20Merge pull request #45158 from aaronfranke/cs-packedarrayRémi Verschelde
Add C# array features from core PackedArrays
2021-02-20Merge pull request #46237 from hpvb/dylib_old_inttypesRémi Verschelde
An update to the dylibloader for older inttypes
2021-02-20Merge pull request #34923 from Calinou/debug-collision-shapes-draw-outlineRémi Verschelde
Draw an outline for 2D debug collision shapes
2021-02-20Use space indentation for all YAML files in `.editorconfig`Hugo Locurcio
YAML only accepts spaces for indentation, not tabs.
2021-02-20An update to the dylibloader for older inttypesHein-Pieter van Braam-Stewart
This #define's older inttypes to their newer versions and #includes <stdint.h> in the generated files. This will help with older glibc/compiler versions using headers generated on newer systems. This closes #46223
2021-02-20Draw an outline for 2D debug collision shapesHugo Locurcio
This makes them easier to distinguish, especially when used in a TileMap. The default color's opacity has been slightly decreased to account for the new outline.
2021-02-19Merge pull request #44864 from ↵Rémi Verschelde
Calinou/editor-array-dictionary-increase-page-size Increase the page size for array/dictionary editors to 20
2021-02-19Merge pull request #42427 from KoBeWi/achtung_sizeRémi Verschelde
Warn when setting Control size inside ready()
2021-02-19Merge pull request #45990 from charles-l/masterRémi Verschelde
improve error message when travel() is called on an AnimationNodeStateMachine when the state machine is not playing
2021-02-19Merge pull request #46227 from Calinou/test-add-arrayRémi Verschelde
Add a test suite for Array