summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-06-25Make visibility of update spinner editor-wide, hidden by defaultThomas 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-25Merge pull request #30060 from Chaosus/wrap_doc_improvementRémi Verschelde
Extends wrapi/wrapf docs
2019-06-25Merge pull request #30065 from akien-mga/docdata-theme-itemsRémi Verschelde
doctool: Fix writing theme_item descriptions
2019-06-25Merge pull request #30050 from njt1982/30050-identifier-fixRémi Verschelde
iOS export: invalid identifier, the character '-' is not allowed
2019-06-25Extends wrapi/wrapf docsChaosus
2019-06-25doctool: Fix writing theme_item descriptionsRé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-25Merge pull request #30002 from GlaceGwyneth/masterRémi Verschelde
Give LineEdit/TextEdit a custom color for font while uneditable
2019-06-25Allow '-' character in iOS reverse DNS identifiers dissallow underscores.Nicholas Thompson
2019-06-25Merge pull request #30030 from zaksnet/document-margincontainerRémi Verschelde
Document MarginContainer node
2019-06-25Merge pull request #30041 from KoBeWi/to_infinity_and_beyondRémi Verschelde
Allow to remove 2D editor bounds
2019-06-25Merge pull request #29979 from flomar/masterRémi Verschelde
Line edit placeholders now react properly to translation changes.
2019-06-25Merge pull request #30056 from austinried/austinried-patch-1Rémi Verschelde
Remove references to mouse stuff from OS
2019-06-24Remove references to mouse stuff from OSaustinried
There is nothing in `OS` about mouse grabbing or mouse cursors, that's in `Input`, so I'm cleaning up those references.
2019-06-24Give TextEdit a custom color for font when read only is setGwyneth 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-24Give LineEdit a custom font color when un-editableGwyneth 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-25Allow to remove 2D editor limitsTomasz Chabora
2019-06-24Line edit placeholders now react properly to translation changes.Florian Marchal
2019-06-24Merge pull request #29913 from eligt/fix-editor-helpRémi Verschelde
Ensure indentation works properly in rich text
2019-06-24Merge pull request #29940 from jonri/fix-vehicle-contactRémi Verschelde
Prevent VehicleBody contact damping from exceeding the baseline value…
2019-06-24Merge pull request #29938 from jonri/fix-collisionshape-scaleRémi Verschelde
Fix updating of collision shape when the transform is set
2019-06-24Merge pull request #30045 from akien-mga/fix-gcc5-build-after-29376Rémi Verschelde
Fix scoped enum value reference, breaks GCC 5
2019-06-24Merge pull request #30016 from randall-fulton/docs/object-set-deferredRémi Verschelde
Add docstring for Object.set_deferred
2019-06-24Merge pull request #30043 from akien-mga/area2d-body-signals-type-hintRémi Verschelde
Area2D: Fix argument type of body_* signals
2019-06-24Merge pull request #30023 from Faless/crash/vector_resizeRémi Verschelde
Fix PoolVector resize and subarray.
2019-06-24Fix scoped enum value reference, breaks GCC 5Rémi Verschelde
Introduced in #29376 and recent compilers are fine with it, but GCC 5 complains. Fixes #30044.
2019-06-24Area2D: Fix argument type of body_* signalsRé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-24Add docstring for Object.set_deferredRandall Fulton
2019-06-24Merge pull request #29948 from lawnjelly/androidkeyboardRémi Verschelde
Fix some keyboards not working with Android
2019-06-24Merge pull request #30009 from Anutrix/tree-icons-height-fixRémi Verschelde
Fixed script and visibility icons's highlight height in tree
2019-06-24Merge pull request #30031 from qarmin/prevent_setting_bad_index_enumsRémi Verschelde
Set to enum variables, only correct values
2019-06-24Merge pull request #30035 from mbrlabs/autoload-fixRémi Verschelde
Check if autoload nodes are != NULL before deleting them
2019-06-24Check if autoload nodes are != NULL before deleting them.Marcus Brummer
This fixes #27854
2019-06-24Document MarginContainer NodeZak
2019-06-24Set to enum variables, only correct valuesqarmin
2019-06-24Merge pull request #29974 from clayjohn/particles_restartRémi Verschelde
Properly set emitting when particles restart
2019-06-24Merge pull request #30026 from akien-mga/fix-undo-convert-cpuparticlesRémi Verschelde
Fix undo references for conversion to CPUParticles
2019-06-24Merge pull request #30018 from GlaceGwyneth/typo-fix-selected-fontRémi Verschelde
TextEdit: Correct typo that broke custom selected font color
2019-06-24Fix undo references for conversion to CPUParticlesRémi Verschelde
The 'undo' reference should be the node to free when the undo history is lost, i.e. the original (GPU) Particles node. Similarly, the 'do' reference should point to the CPUParticles (result of the 'do' call). Fixes #29742.
2019-06-24Correct typo that broke custom selected font colorGwyneth Lowe
Change several font_selected_color to font_color_selected; the actual name of the override
2019-06-24doc: Sync classref with current sourceRémi Verschelde
2019-06-24Merge pull request #30019 from Faless/tls/stream_checkFabio Alessandrelli
Add NULL check in SSL connect_to_stream
2019-06-24Fix PoolVector resize and subarray.Fabio Alessandrelli
The first used to accept negative values, the second would crash if out of bound.
2019-06-24Add NULL check in SSL connect_to_streamFabio Alessandrelli
2019-06-24Merge pull request #30011 from akien-mga/animation-invalid-keyRémi Verschelde
Display invalid value keys in AnimationTrackEdit
2019-06-23Merge pull request #29376 from hilfazer/editor_layouts_dialogRémi Verschelde
Saving/deleting editor layouts dialog with layout list
2019-06-23Merge pull request #24764 from SoIAS/double_clicking_24444Rémi Verschelde
Center script line when double clicked on error in debugger
2019-06-23Merge pull request #29987 from Chaosus/fix_crashesRémi Verschelde
Fix expression node crashes
2019-06-23Display invalid value keys in AnimationTrackEditRémi Verschelde
Godot 2.1 and 3.0 had this feature but it was lost in the rewrite of the animation editor in 3.1. Drop unused KeyValid icon, since all valid keys now have a custom type icon.
2019-06-23Fixed script and visibility icons's highlight height in treeunknown
2019-06-23Merge pull request #30004 from akien-mga/tileset-false-positivesRémi Verschelde
TileSet: Don't error out on tile_ getters with wrong shape id