Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | 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 | 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 | |||
2021-02-19 | Warn when setting Control size inside ready() | Tomasz Chabora | |
2021-02-19 | Add a test suite for Array | Sarav Noor Singh | |
2021-02-19 | Merge pull request #39606 from aaronfranke/pause | Rémi Verschelde | |
Update documentation for the new ProcessMode | |||
2021-02-19 | Update documentation for the new ProcessMode | Aaron Franke | |
2021-02-19 | Merge pull request #46086 from ellenhp/new_resampling | Rémi Verschelde | |
Implement a new resampling algorithm in AudioStreamPlaybackResampled | |||
2021-02-19 | Merge pull request #46196 from nmrkr/visual-shader-invalid-forced-connect | Rémi Verschelde | |
Fix crash when calling connect_nodes_forced with invalid params | |||
2021-02-19 | Merge pull request #46200 from Faless/js/4.x_canvas_size_pr | Rémi Verschelde | |
[HTML5] Easier HTML templates, better canvas size handling | |||
2021-02-19 | Merge pull request #46194 from Calinou/os-delay-no-negative | Rémi Verschelde | |
Don't allow negative values for `OS.delay_usec()`/`OS.delay_msec()` | |||
2021-02-19 | Merge pull request #46221 from akien-mga/doc-sync-classref | Rémi Verschelde | |
doc: Sync classref with current source | |||
2021-02-19 | Merge pull request #46222 from bruvzg/make_ft_optional | Rémi Verschelde | |
Make FreeType optional for export templates. | |||
2021-02-19 | doc: Sync classref with current source | Rémi Verschelde | |
And fix various bogus bindings following previous PRs. | |||
2021-02-19 | Make FreeType optional for export templates. | bruvzg | |
2021-02-19 | Merge pull request #46219 from pycbouh/doc-editor-plugin-build | Rémi Verschelde | |
Add documentation for EditorPlugin's build method | |||
2021-02-19 | Merge pull request #46191 from reduz/refactor-process-mode | Rémi Verschelde | |
Refactor Process Mode | |||
2021-02-19 | Merge pull request #44737 from KoBeWi/touch_shape_screen_centered_button | Rémi Verschelde | |
Fix shape_centered property in TouchScreenButton | |||
2021-02-19 | Add documentation for EditorPlugin's build method | Yuri Sizov | |
2021-02-19 | Merge pull request #46216 from Chaosus/fix_scenetree_timeout | Rémi Verschelde | |
Fix connecting signal to `SceneTreeEditor::update_timer` | |||
2021-02-19 | Fix `SceneTreeEditor::update_timer` - timeout signal | Yuri Roubinsky | |
2021-02-19 | Merge pull request #46197 from RandomShaper/volatile_robustness | Rémi Verschelde | |
Improve robustness of atomics | |||
2021-02-19 | Merge pull request #44181 from EricEzaM/PR/INP5-new-input-editor | Rémi Verschelde | |
New Input Map Editor and Editor Settings Shortcut Editor | |||
2021-02-19 | Merge pull request #46202 from ellenhp/fix_mix_before_start | Rémi Verschelde | |
Always call start() on audio stream before mixing | |||
2021-02-19 | Added Built-in Action editor to Editor Settings dialog. | Eric M | |
Built-in actions can now be edited for the Editor too. Also added usage of the new Event confifiguration dialog to for better UX. | |||
2021-02-19 | New ActionMapEditor to replace InputMapEditor. Used in ProjectSettings. | Eric M | |
Renamed to ActionMapEditor as it is more generic and can be used for more than just the InputMapEditor if required. This also includes a new Event Configuration dialog (previously "Press A key...") which can be used to create and edit InputEvents for any use - like the Project Settings input map, or the Editor Settings shortcuts. | |||
2021-02-19 | Merge pull request #38994 from nikibobi/fix-file-dialog-favorite | Rémi Verschelde | |
Fix file dialog filename cleared when selecting favorites | |||
2021-02-19 | Merge pull request #46199 from ellenhp/fix_distortion_filter | Rémi Verschelde | |
Prevent distortion filter from introducing NaNs in the audio buffer | |||
2021-02-18 | Don't fade out after pausing unless stream is running | Ellen Poe | |
2021-02-18 | Initialize fadeout to false in AudioStreamPlayer | Ellen Poe | |
2021-02-19 | [HTML5] Better fullscreen, canvas resizing. | Fabio Alessandrelli | |
Three canvas resize policies: - `None`: Godot window settings are ignored. - `Project`: Godot handles the canvas like a native app (resizing it when setting the window size). - `Adaptive`: Canvas size will always adapt to browser window size. Use `None` if you want to control the canvas size with custom JavaScript code. | |||
2021-02-19 | [HTML5] Easier HTML templates, better deinit/cleanup. | Fabio Alessandrelli | |
2021-02-19 | Improve robustness of atomics | Pedro J. Estébanez | |
And fix increment in `CowData` not being conditional anymore after the recent changes. Co-authored-by: Hein-Pieter van Braam-Stewart <hp@tmm.cx> | |||
2021-02-18 | Prevent distortion filter from introducing NaNs in the audio buffer. | Ellen Poe | |
2021-02-18 | Refactor Process Mode | reduz | |
Implements https://github.com/godotengine/godot-proposals/issues/1835#issuecomment-727186192 * PauseMode is now ProcessMode, containing the following states: ``` PROCESS_MODE_INHERIT, // same as parent node PROCESS_MODE_NORMAL, // process only if not paused PROCESS_MODE_PAUSE_ONLY, // process only if paused PROCESS_MODE_ALWAYS, // process always PROCESS_MODE_DISABLED, // never process ``` * NOTIFICATION_PAUSED and NOTIFICATION_UNPAUSED are received effectively when the node is paused and unpaused (not any longer when pause mode is set in SceneTree). * Renamed some nodes that used ProcessMode/process_mode to specify a callback type to ProcessCallback to avoid clashes. | |||
2021-02-18 | Merge pull request #41644 from ↵ | Rémi Verschelde | |
Eoin-ONeill-Yokai/collision_2d_shape_visualization_fix CollisionShape2D 'Disabled' Visualization Correction | |||
2021-02-18 | Don't allow negative values for `OS.delay_usec()`/`OS.delay_msec()` | Hugo Locurcio | |
This closes #46190. | |||
2021-02-18 | Merge pull request #46192 from nmrkr/surface-tool-negative-index | Rémi Verschelde | |
Fix handling of negative indices in SurfaceTool | |||
2021-02-18 | Fix crash when calling connect_nodes_forced with invalid params | Delf Neumärker | |
2021-02-18 | Fix handling of negative indices in SurfaceTool | Delf Neumärker | |
2021-02-18 | Merge pull request #45326 from clayjohn/VULKAN-ign-shadows | Clay John | |
Use Interleaved gradient noise for shadow samples | |||
2021-02-18 | Merge pull request #46131 from bruvzg/move_tablet_to_ds | Rémi Verschelde | |
Move tablet driver API from OS to DisplayServer | |||
2021-02-18 | Merge pull request #45617 from RandomShaper/modernize_atomics | Rémi Verschelde | |
Modernize atomics (and fix `volatile`) |