Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-22 | Input: Swap events for ui_redo to favor Shift+Ctrl+Z over Ctrl+Y | Ré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-22 | Merge pull request #46243 from Calinou/improve-get-node-error-message | Rémi Verschelde | |
Improve the `get_node()` error message to be more descriptive | |||
2021-02-22 | Merge pull request #46309 from akien-mga/ci-no-debug-symbols | Rémi Verschelde | |
CI: Build without debug symbols to reduce cache size | |||
2021-02-22 | Merge pull request #45934 from angad-k/fix-smoothstep-function-documentation | Rémi Verschelde | |
fix minor issue in smooth step function's documentation | |||
2021-02-22 | Improve the `get_node()` error message to be more descriptive | Hugo Locurcio | |
- Mention the origin of the `get_node()` call. - Mention whether the attempted path is absolute or relative. See #46214. | |||
2021-02-22 | CI: Build without debug symbols to reduce cache size | Ré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-22 | i18n: Sync translations with Weblate | Rémi Verschelde | |
(cherry picked from commit d0bc9144913a831500a24fc4d8d9f4cb3fd13286) | |||
2021-02-22 | Merge pull request #46263 from dalexeev/fix-help-shortcut-2 | Rémi Verschelde | |
Fix "editor/editor_help" shortcut (again) | |||
2021-02-22 | Merge pull request #46253 from asmaloney/docs-theme | Rémi Verschelde | |
[docs] Clarification on theme's get_stylebox | |||
2021-02-22 | Merge pull request #46296 from madmiraal/remove-unused-variables | Rémi Verschelde | |
Remove unused variables from full-size.html | |||
2021-02-21 | Merge pull request #46230 from gongpha/keep-hue-value | Rémi Verschelde | |
Keep Hue value when Saturation or Value is zero | |||
2021-02-21 | Merge pull request #46297 from madmiraal/add-missing-semicolons | Rémi Verschelde | |
Add missing semicolons to webxr.eterns.js | |||
2021-02-21 | Merge pull request #46295 from Calinou/doc-spinbox-theming | Rémi Verschelde | |
Document theming a SpinBox's background | |||
2021-02-21 | Document theming a SpinBox's background | Hugo Locurcio | |
This closes #46248. | |||
2021-02-21 | Add missing semicolons to webxr.eterns.js | Marcel Admiraal | |
2021-02-21 | Remove unused variables from full-size.html | Marcel Admiraal | |
2021-02-21 | Merge pull request #46277 from angad-k/PathFollow2D-unit-test | Rémi Verschelde | |
PathFollow2D unit test | |||
2021-02-21 | set up PathFollow2D unit test | Angad Kambli | |
2021-02-21 | Merge pull request #46286 from kleonc/label_set_lines_skipped | Rémi Verschelde | |
Label::set_lines_skipped Fail if passed a negative value | |||
2021-02-21 | Merge pull request #43731 from Calinou/test-add-resource | Rémi Verschelde | |
Add a test suite for Resource | |||
2021-02-21 | Merge pull request #46284 from kleonc/line2d_set_point_position | Rémi Verschelde | |
Line2D::set_point_position Fail if passed index is out of bounds | |||
2021-02-21 | Merge 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-21 | Label::set_lines_skipped Fail if passed a negative value | kleonc | |
2021-02-21 | Line2D::set_point_position Fail if passed index is out of bounds | kleonc | |
2021-02-21 | Merge pull request #46244 from Calinou/editorconfig-yaml-spaces | Rémi Verschelde | |
Use space indentation for all YAML files in `.editorconfig` | |||
2021-02-21 | Merge pull request #46268 from Calinou/doc-button-touchscreenbutton | Rémi Verschelde | |
Document that Button doesn't interpret touch input (= no multitouch) | |||
2021-02-21 | Merge pull request #46275 from Chaosus/shader_fix_struct_crash | Rémi Verschelde | |
Prevents shader crash if two struct with the same name are declared | |||
2021-02-21 | Prevent selecting hidden nodes in 3D and Canvas Item editors | hilfazer | |
2021-02-21 | Prevents shader crash if two struct with the same name are declared | Yuri Roubinsky | |
2021-02-21 | Merge pull request #46272 from Chaosus/shader_fix_struct_crash | Rémi Verschelde | |
Prevents shader crash if passing invalid struct to the return statement | |||
2021-02-21 | Merge pull request #38565 from nekomatata/export-default-values | Rémi Verschelde | |
Fixed export var default value in PackedScene when script is not loaded in editor | |||
2021-02-21 | Prevents shader crash if passing invalid struct to the return statement | Yuri Roubinsky | |
2021-02-21 | Document that Button doesn't interpret touch input (= no multitouch) | Hugo Locurcio | |
TouchScreenButton should be used for gameplay actions instead. | |||
2021-02-21 | Fix "editor/editor_help" shortcut (again) | Danil Alexeev | |
2021-02-20 | Add a test suite for Resource | Hugo Locurcio | |
2021-02-20 | Merge pull request #46256 from hpvb/dri-prime-amd-master | Hein-Pieter van Braam | |
Add 'AMD' GPU vendor name to PRIME detector | |||
2021-02-20 | Merge pull request #46255 from hpvb/fix-clang-atomic | Rémi Verschelde | |
Use -latomic when linking whe using clang on Linux | |||
2021-02-20 | Add 'AMD' GPU vendor name to PRIME detector | Hein-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-20 | Use -latomic when linking whe using clang on Linux | Hein-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_stylebox | Andy 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-20 | Merge pull request #45158 from aaronfranke/cs-packedarray | Rémi Verschelde | |
Add C# array features from core PackedArrays | |||
2021-02-20 | Merge pull request #46237 from hpvb/dylib_old_inttypes | Rémi Verschelde | |
An update to the dylibloader for older inttypes | |||
2021-02-20 | Merge pull request #34923 from Calinou/debug-collision-shapes-draw-outline | Rémi Verschelde | |
Draw an outline for 2D debug collision shapes | |||
2021-02-20 | Use space indentation for all YAML files in `.editorconfig` | Hugo Locurcio | |
YAML only accepts spaces for indentation, not tabs. | |||
2021-02-20 | An update to the dylibloader for older inttypes | Hein-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-20 | Draw an outline for 2D debug collision shapes | Hugo 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-19 | Merge 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-19 | Merge pull request #42427 from KoBeWi/achtung_size | Rémi Verschelde | |
Warn when setting Control size inside ready() | |||
2021-02-19 | Merge pull request #45990 from charles-l/master | Rémi Verschelde | |
improve error message when travel() is called on an AnimationNodeStateMachine when the state machine is not playing | |||
2021-02-19 | Merge pull request #46227 from Calinou/test-add-array | Rémi Verschelde | |
Add a test suite for Array |