Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-01-14 | Merge pull request #35120 from Faless/docs/html5_restrictions | Rémi Verschelde | |
Update documentation to reflect HTML5 limitations. | |||
2020-01-14 | Update documentation to reflect HTML5 limitations. | Fabio Alessandrelli | |
2020-01-14 | Complete documentation of some more classes | Tomasz Chabora | |
2020-01-13 | Revert "Enable Vsync via Compositor by default" | Rémi Verschelde | |
This reverts commit 9600fd5dde1f85b7dd2dd8558d52ff86b18651e7. Add comment warning about possible implications of using this option. Fixes #35038. | |||
2020-01-12 | doc: Sync classref with current source | Rémi Verschelde | |
2020-01-12 | Merge pull request #34960 from johannesgunnar/spin_box-apply-method | Rémi Verschelde | |
Spinbox apply input method | |||
2020-01-11 | Add apply method to SpinBox | Jóhannes Gunnar Þorsteinsson | |
2020-01-10 | Merge pull request #35001 from KoBeWi/nope | Rémi Verschelde | |
Add signal for LineEdit overflow event | |||
2020-01-10 | Merge pull request #34999 from cajallen/master | Rémi Verschelde | |
Updated Array's sort_custom method documentation | |||
2020-01-10 | Add signal for LineEdit overflow event | Tomasz Chabora | |
2020-01-10 | [DOCS] Corrections and clarifications to classref | Chris Bradfield | |
2020-01-10 | sort_custom description and example updated | cajallen | |
2020-01-10 | Merge pull request #34991 from Calinou/doc-os-is-debug-build | Rémi Verschelde | |
Improve the `OS.is_debug_build()` documentation | |||
2020-01-10 | Improve the `OS.is_debug_build()` documentation | Hugo Locurcio | |
2020-01-10 | Merge pull request #34962 from KoBeWi/randocs | Rémi Verschelde | |
Complete documentation of various classes | |||
2020-01-10 | Complete documentation of various classes | Tomasz Chabora | |
2020-01-10 | Merge pull request #34968 from Calinou/enable-vsync-via-compositor | Rémi Verschelde | |
Enable Vsync via Compositor by default | |||
2020-01-09 | Enable Vsync via Compositor by default | Hugo Locurcio | |
This feature was added in #33414 but it was disabled by default. Now that it got some testing, it's probably safe to enable it by default. | |||
2020-01-09 | Add option to disable loading scripts in ScriptCreateDialog | Michael Alexsander | |
2020-01-09 | Doc: Mention that Directory pre-opens res:// by default | Rémi Verschelde | |
This may be considered a bug, so we might change that in the future. See #24149. | |||
2020-01-08 | Improve the Environment class documentation | Hugo Locurcio | |
Co-authored-by: Clay John <claynjohn@gmail.com> | |||
2020-01-08 | Merge pull request #34871 from ↵ | Rémi Verschelde | |
lentsius-bark/textEdit-vertical-horizontal-scroll-expose expose scroll_vertical and scroll_horizontal in TextEdit | |||
2020-01-08 | Merge pull request #34901 from YeldhamDev/multiple_doc_completions | Rémi Verschelde | |
Complete docs for GraphEdit/Node and PopupMenu | |||
2020-01-07 | Make possible to edit the GraphEdit's selection rect colors | Michael Alexsander | |
2020-01-07 | Complete docs for GraphEdit/Node and PopupMenu | Michael Alexsander | |
2020-01-07 | Complete the Environment class documentation | Hugo Locurcio | |
This closes #34846. | |||
2020-01-07 | expose scroll_vertical and scroll_horizontal in TextEdit + documentation | Krystof Klestil | |
2020-01-07 | Rewording RichTextLabel::remove_line documentation | Haoyu Qiu | |
2020-01-06 | doc: Document what happens to old script with Object.set_script() | rainlizard | |
2020-01-06 | Merge pull request #33967 from Calinou/add-os-is-window-focused | Rémi Verschelde | |
Add an `OS.is_window_focused()` getter | |||
2020-01-06 | Merge pull request #34848 from clayjohn/DOCS-VisualServer | Rémi Verschelde | |
Finish documenting VisualServer | |||
2020-01-05 | Finish documenting VisualServer | clayjohn | |
2020-01-06 | Merge pull request #34847 from YeldhamDev/splitcontainer_tabs_docs | Rémi Verschelde | |
Complete the SplitContainer and Tabs documentations | |||
2020-01-06 | Merge pull request #34852 from timothyqiu/rtl-doc | Rémi Verschelde | |
Completes the RichTextLabel documentation | |||
2020-01-06 | Merge pull request #32126 from Calinou/expose-video-adapter-name-vendor | Rémi Verschelde | |
Add VisualServer methods to get the video adapter name and vendor | |||
2020-01-06 | Completes the RichTextLabel documentation | Haoyu Qiu | |
2020-01-06 | Add VisualServer methods to get the video adapter name and vendor | Hugo Locurcio | |
These methods can be used in scripts to retrieve the OpenGL `GL_RENDERER` and `GL_VENDOR` strings (respectively). This closes #28404. | |||
2020-01-05 | Complete the SplitContainer and Tabs documentations | Michael Alexsander | |
2020-01-05 | Merge pull request #34833 from clayjohn/DOCS-VisualServer | Rémi Verschelde | |
Document most VisualServer functions | |||
2020-01-05 | Document most VisualServer functions | clayjohn | |
2020-01-05 | Merge pull request #34812 from clayjohn/DOCS-VisualServer | Rémi Verschelde | |
Updated many VisualServer functions | |||
2020-01-04 | Updated many VisualServer functions | clayjohn | |
2020-01-05 | Merge pull request #34820 from timothyqiu/doc-tree | Rémi Verschelde | |
Improves Tree documentation | |||
2020-01-04 | Document the return value of `Object.get()` with a nonexistent property | Hugo Locurcio | |
2020-01-04 | Improves Tree documentation | Haoyu Qiu | |
2020-01-03 | Document TabContainer's "use_hidden_tabs_for_min_size" | Michael Alexsander | |
2020-01-03 | doc: Sync classref with current source | Rémi Verschelde | |
2020-01-03 | Merge pull request #34726 from nekomatata/polygon2d-antialiasing-fix | Rémi Verschelde | |
Fixed antialiasing option for Polygon2D with concave/hollow shapes | |||
2020-01-03 | Add a shorthand for setting the exit code using `SceneTree::quit()` | Hugo Locurcio | |
This reduces the amount of code required to exit a process with a non-zero exit code. This pattern is also found in most other programming languages. | |||
2020-01-03 | Merge pull request #34747 from rcorre/add_child_owner | Rémi Verschelde | |
Add note about add_child and owner. |