Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-26 | Merge pull request #25863 from AlexHolly/undo-redo-version-signal | Rémi Verschelde | |
UndoRedo add version changed signal | |||
2019-06-26 | Merge pull request #30088 from akien-mga/node-get_node_and_resource | Rémi Verschelde | |
Node: Fix logic of has/get_node_and_resource and document it | |||
2019-06-26 | UndoRedo add version changed signal | Alexander Holland | |
added some functions to manage undo buttons | |||
2019-06-26 | doc: Sync classref with current source | Rémi Verschelde | |
2019-06-26 | Node: Fix logic of has/get_node_and_resource and document it | Rémi Verschelde | |
Also document NodePath. | |||
2019-06-26 | Merge pull request #24288 from ttencate/update_spinner_23738 | Rémi Verschelde | |
Make visibility of update spinner editor-wide, hidden by default | |||
2019-06-26 | Merge pull request #30084 from akien-mga/doc-encodedobjectasid | Rémi Verschelde | |
doc: Document EncodedObjectAsID, expose its property | |||
2019-06-26 | doc: Document EncodedObjectAsID, expose its property | Rémi Verschelde | |
2019-06-26 | Merge pull request #30079 from YeldhamDev/help_feature_filter_fix | Rémi Verschelde | |
Fix certain items not appearing in search tree when a feature profile is set | |||
2019-06-25 | Fix certain items not appearing in search tree when a feature profile is set | Michael Alexsander Silva Dias | |
2019-06-25 | Merge pull request #30053 from guilhermefelipecgs/fix_popup_centered | Rémi Verschelde | |
Fix Popup::popup_centered not centralizing at the first call | |||
2019-06-25 | Fix Popup::popup_centered not centering at the first call | Guilherme Felipe | |
2019-06-25 | Merge pull request #30067 from GlaceGwyneth/gridmap-fix | Rémi Verschelde | |
Fix GridMap transform problems | |||
2019-06-25 | Make visibility of update spinner editor-wide, hidden by default | Thomas ten Cate | |
- Make visibility of the spinner and "update always" option editor-wide, rather than per-project metadata. - Add options "Show Update Spinner" and "Update Continuously" under Editor Settings > Interface > Editor. Both options are false by default. - Rename some variables and constants to be more consistent and clearer: "update always" -> "update continuously", "update changes" -> "update when changed", "update menu" -> "update spinner", "circle" -> "update spinner". Fixes #23738. | |||
2019-06-25 | Merge pull request #30060 from Chaosus/wrap_doc_improvement | Rémi Verschelde | |
Extends wrapi/wrapf docs | |||
2019-06-25 | Merge pull request #30065 from akien-mga/docdata-theme-items | Rémi Verschelde | |
doctool: Fix writing theme_item descriptions | |||
2019-06-25 | Merge pull request #30050 from njt1982/30050-identifier-fix | Rémi Verschelde | |
iOS export: invalid identifier, the character '-' is not allowed | |||
2019-06-25 | Extends wrapi/wrapf docs | Chaosus | |
2019-06-25 | doctool: Fix writing theme_item descriptions | Rémi Verschelde | |
We already had support for parsing and saving theme_item descriptions in DocData, and displaying it in the editor, but doctool would drop the changes as it was not writing them back to the XML. Part of #29868. | |||
2019-06-25 | Fix GridMap transform problems | Gwyneth Lowe | |
2019-06-25 | Merge pull request #30002 from GlaceGwyneth/master | Rémi Verschelde | |
Give LineEdit/TextEdit a custom color for font while uneditable | |||
2019-06-25 | Allow '-' character in iOS reverse DNS identifiers dissallow underscores. | Nicholas Thompson | |
2019-06-25 | Merge pull request #30030 from zaksnet/document-margincontainer | Rémi Verschelde | |
Document MarginContainer node | |||
2019-06-25 | Merge pull request #30041 from KoBeWi/to_infinity_and_beyond | Rémi Verschelde | |
Allow to remove 2D editor bounds | |||
2019-06-25 | Merge pull request #29979 from flomar/master | Rémi Verschelde | |
Line edit placeholders now react properly to translation changes. | |||
2019-06-25 | Merge pull request #30056 from austinried/austinried-patch-1 | Rémi Verschelde | |
Remove references to mouse stuff from OS | |||
2019-06-24 | Remove references to mouse stuff from OS | austinried | |
There is nothing in `OS` about mouse grabbing or mouse cursors, that's in `Input`, so I'm cleaning up those references. | |||
2019-06-24 | Give TextEdit a custom color for font when read only is set | Gwyneth Lowe | |
Previously there was some transparency hard coded into TextEdit when in read only mode. This change adds a custom color for adjusting the font in read only mode. It also applies when syntax highlighting is on. | |||
2019-06-24 | Give LineEdit a custom font color when un-editable | Gwyneth Lowe | |
By default the LineEdit's text when editable is unchecked had some transparency hardcoded. This change adds a custom color to LineEdit for adjusting the font when editable is off. Addresses issue 29814 | |||
2019-06-25 | Allow to remove 2D editor limits | Tomasz Chabora | |
2019-06-24 | Line edit placeholders now react properly to translation changes. | Florian Marchal | |
2019-06-24 | Merge pull request #29913 from eligt/fix-editor-help | Rémi Verschelde | |
Ensure indentation works properly in rich text | |||
2019-06-24 | Merge pull request #29940 from jonri/fix-vehicle-contact | Rémi Verschelde | |
Prevent VehicleBody contact damping from exceeding the baseline value… | |||
2019-06-24 | Merge pull request #29938 from jonri/fix-collisionshape-scale | Rémi Verschelde | |
Fix updating of collision shape when the transform is set | |||
2019-06-24 | Merge pull request #30045 from akien-mga/fix-gcc5-build-after-29376 | Rémi Verschelde | |
Fix scoped enum value reference, breaks GCC 5 | |||
2019-06-24 | Merge pull request #30016 from randall-fulton/docs/object-set-deferred | Rémi Verschelde | |
Add docstring for Object.set_deferred | |||
2019-06-24 | Merge pull request #30043 from akien-mga/area2d-body-signals-type-hint | Rémi Verschelde | |
Area2D: Fix argument type of body_* signals | |||
2019-06-24 | Merge pull request #30023 from Faless/crash/vector_resize | Rémi Verschelde | |
Fix PoolVector resize and subarray. | |||
2019-06-24 | Fix scoped enum value reference, breaks GCC 5 | Rémi Verschelde | |
Introduced in #29376 and recent compilers are fine with it, but GCC 5 complains. Fixes #30044. | |||
2019-06-24 | Area2D: Fix argument type of body_* signals | Rémi Verschelde | |
Those signals receive either a PhysicsBody2D or a TileMap object, and what the emitting method checks internally is only that the object is a Node. In theory any Node could go through these signals if they talk directly to the PhysicsServer2D. Also updated docs. Fixes #27076. Might need further (compat breaking) improvement as this API is a bit confusing, cf. #24739. | |||
2019-06-24 | Add docstring for Object.set_deferred | Randall Fulton | |
2019-06-24 | Merge pull request #29948 from lawnjelly/androidkeyboard | Rémi Verschelde | |
Fix some keyboards not working with Android | |||
2019-06-24 | Merge pull request #30009 from Anutrix/tree-icons-height-fix | Rémi Verschelde | |
Fixed script and visibility icons's highlight height in tree | |||
2019-06-24 | Merge pull request #30031 from qarmin/prevent_setting_bad_index_enums | Rémi Verschelde | |
Set to enum variables, only correct values | |||
2019-06-24 | Merge pull request #30035 from mbrlabs/autoload-fix | Rémi Verschelde | |
Check if autoload nodes are != NULL before deleting them | |||
2019-06-24 | Check if autoload nodes are != NULL before deleting them. | Marcus Brummer | |
This fixes #27854 | |||
2019-06-24 | Document MarginContainer Node | Zak | |
2019-06-24 | Set to enum variables, only correct values | qarmin | |
2019-06-24 | Merge pull request #29974 from clayjohn/particles_restart | Rémi Verschelde | |
Properly set emitting when particles restart | |||
2019-06-24 | Merge pull request #30026 from akien-mga/fix-undo-convert-cpuparticles | Rémi Verschelde | |
Fix undo references for conversion to CPUParticles |