Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-02-14 | Added "allow_reselect" property to ItemList and enabled it for the ↵ | Michael Alexsander Silva Dias | |
method/help lists. | |||
2018-02-13 | Merge pull request #16422 from synasius/fixed-line-edit-text-changed-signal | Rémi Verschelde | |
Fixed #15082: line edit emits two "text_changed" signals when pasting while text is selected | |||
2018-02-13 | Merge pull request #16432 from Ovnuniarchos/master | Rémi Verschelde | |
SpinBoxes calculate correctly their width before first redraw. | |||
2018-02-13 | Merge pull request #16424 from AndreaCatania/phyj | Rémi Verschelde | |
Added physics API in order to enable/disable collisions between rigidbody attached to a joint with bullet physics bullet | |||
2018-02-07 | Update an outdated method name in error message | ronroniv | |
set_enable_monitoring -> set_monitoring | |||
2018-02-05 | SpinBoxes calculate correctly their width before first redraw. | Ovnuniarchos | |
2018-02-05 | Added physics API in order to enable/disable collisions between rigidbody ↵ | Andrea Catania | |
attached to a joint with bullet physics bullet Fixes #16424 | |||
2018-02-05 | Fixed #15082: line edit emits two "text_changed" signals when pasting while ↵ | Federico Frenguelli | |
text is selected | |||
2018-02-03 | Fix texture import spelling | Phil Jones | |
2018-02-03 | Gradient: fix wrong property type | Poommetee Ketson | |
2018-02-03 | Fix wrong property type for fixed icon size in ItemList | binbitten | |
2018-02-01 | Merge pull request #16276 from bcr3ative/issue_15668 | Rémi Verschelde | |
Fix inconsistencies and typos in argument names | |||
2018-02-01 | Merge pull request #15910 from robfram/fix-audio-signal-issue-15895 | Rémi Verschelde | |
Fix issue #15895, audio streams don't signalling finished after the first one | |||
2018-02-01 | Merge pull request #15946 from MarianoGnu/issue_15870 | Rémi Verschelde | |
Attemp to fix #15870 | |||
2018-02-01 | Fix inconsistencies and typos in argument names | Paolo Perkovic | |
2018-02-01 | Merge pull request #16249 from binbitten/fix-highlight-ofs | Rémi Verschelde | |
Fix TextEdit current line highlight horizontal offset | |||
2018-02-01 | Merge pull request #15254 from mrcdk/pitch_scale | Rémi Verschelde | |
Added pitch scale property to AudioStreamPlayer, AudioStreamPlayer2D and AudioStreamPlayer3D | |||
2018-01-31 | Fix TextEdit current line highlight horizontal offset | binbitten | |
2018-01-30 | Expose a few GraphEdit methods to script languages | George Marques | |
2018-01-30 | Ability to import .escn files, which is just a .tscn but with forced import. | Juan Linietsky | |
This works together with the new Blender to Godot exporter. | |||
2018-01-30 | Merge pull request #16152 from hpvb/fix-16131 | Rémi Verschelde | |
Allow focus on disabled buttons | |||
2018-01-30 | Merge pull request #15980 from mrcdk/audio_stream_get_length | Rémi Verschelde | |
Expose audio streams get_length() | |||
2018-01-28 | Allow focus on disabled buttons | Hein-Pieter van Braam | |
This behavior better matches other gui toolkits. A selected disabled button still can't be interacted with but it can now be selected. This seems to be what QT and GTK do also. This fixes #16131 | |||
2018-01-27 | Fix inverted RIGHT/LEFT TOP/BOTTOM Camera2D drag margin in runtime (editor ↵ | robfram | |
works fine). Fix #16095. | |||
2018-01-25 | Remove duplicate "autoplay" property | Bojidar Marinov | |
Part of #16051 | |||
2018-01-23 | update signals' MethodInfo in Tween | Paul Joannon | |
key is a NodePath, not a String | |||
2018-01-22 | defend Path2D against a null curve | Todd Ross | |
2018-01-22 | Expose audio streams get_length() | MrCdK | |
2018-01-22 | Merge pull request #15938 from poke1024/fix15904 | Rémi Verschelde | |
Fix crash on deleted rigidbodies without contact monitor (issue 15904) | |||
2018-01-21 | Fix typo in CollisionObject warning | Rémi Verschelde | |
2018-01-21 | I have no idea why this commit fixes #15392 | Juan Linietsky | |
2018-01-21 | attemp to fix #15870 | Mariano Suligoy | |
2018-01-21 | Fix crash on deleted rigidbodies without contact monitor (issue 15904) | Bernhard Liebl | |
2018-01-20 | Fix issue 15895, audio streams don't signalling finished after the first one | robfram | |
if the audio player is set to play again due to the order of calls in _notification. First it emits the signal, and later it disable the internal processing regardless what the callback did. Changed to emit the signal at the end to ensure the changes done at callback remains. | |||
2018-01-20 | Fix minor typo: it's -> its | Yuri Chornoivan | |
2018-01-18 | Remove obsolete Viewport _update_rect() code | Rémi Verschelde | |
2018-01-18 | Fix typos in code and docs with codespell | Rémi Verschelde | |
Using v1.11.0 from https://github.com/lucasdemarchi/codespell | |||
2018-01-18 | Before I forget, add warnings on areas without children (should not break ↵ | Juan Linietsky | |
anything). Seen too many users misunderstanding the edit rect is the shape. | |||
2018-01-18 | TextEdit fix get_mouse after many folds | Ian | |
2018-01-17 | doc: Replace some more "val" with "value" + sync | Rémi Verschelde | |
2018-01-16 | BMFont loading direct support from .fnt files. | Juan Linietsky | |
2018-01-15 | Changes the keep_margin parameter to true by default, so that people are not ↵ | Gilles Roudiere | |
suprised that set_anchor changes the margins values | |||
2018-01-15 | Merge pull request #15696 from bojidar-bg/15646-assigned-animation | Rémi Verschelde | |
Fix an issue with the animation editor not seeking to the target time | |||
2018-01-15 | ViewportContainer passes input down to children viewports | Fabio Alessandrelli | |
2018-01-14 | Merge pull request #15708 from Paulb23/current_line_clipping_issue_15427 | Rémi Verschelde | |
Fixed current line highlighting with horizontal clipping, issue 15427 | |||
2018-01-14 | Fixed current line highligting with horizontal clipping, issue 15427 | Paulb23 | |
2018-01-14 | Fix an issue with the animation editor not seeking to the target time properly. | Bojidar Marinov | |
Fixes #15646. | |||
2018-01-13 | Merge pull request #15670 from poke1024/fix15588 | Rémi Verschelde | |
Fixes hangs with Tree in multi selection mode (issue 15588) | |||
2018-01-13 | Fixes hangs with Tree in multi selection mode (issue 15588) | Bernhard Liebl | |
2018-01-13 | Merge pull request #15657 from paulloz/fix-textedit-undo-redo-selection | Rémi Verschelde | |
TextEdit: Fix selection issue with undo/redo |