Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-11 | doc: Sync classref with current source | Rémi Verschelde | |
Bind missing enums. | |||
2020-09-01 | Document scroll horizontal and scroll vertical in text edit | skyace65 | |
2020-08-09 | Add option to disable virtual keyboard for TextEdit | PouleyKetchoupp | |
Adding support for disabling virtual keyboard on mobile platforms, in order to make it consistent with LineEdit. It allows implementing a custom virtual keyboard. | |||
2020-07-15 | doc: Sync classref with current source | Rémi Verschelde | |
2020-07-03 | Merge pull request #40089 from slooths/doc-textedit-minimap | Rémi Verschelde | |
Add documentation for minimap_draw and minimap_width | |||
2020-07-03 | Merge pull request #40086 from slooths/doc-update-select-methods | Rémi Verschelde | |
Update TextEdit select and select_all method descriptions | |||
2020-07-03 | Merge pull request #40085 from slooths/doc-selecting-enabled | Rémi Verschelde | |
Add documentation for selecting_enabled | |||
2020-07-03 | Add documentation for minimap_draw and minimap_width | Slooth | |
2020-07-03 | Update TextEdit select and select_all methods | Slooth | |
2020-07-03 | Add documentation for selecting_enabled | Slooth | |
2020-07-03 | Merge pull request #40082 from slooths/doc-textedit-center-viewport-to-cursor | Rémi Verschelde | |
Add documentation for center_viewport_to_cursor method | |||
2020-07-03 | Add documentation for center_viewport_to_cursor method | Slooth | |
2020-07-03 | Add documentation for shortcut_keys_enabled | Slooth | |
2020-05-16 | TextEdit search returns a dictionary instead of Vector | PouleyKetchoupp | |
Easier to use than accessing elements in a Vector using indices given by an enum. Breaks compatibility on existing scripts using this functionality. | |||
2020-05-11 | doc: Sync classref with current source | Rémi Verschelde | |
2020-05-01 | method bind TextEdit::set_line() added | Thakee Nathees | |
2020-04-19 | Update TextEdit docs - explaining 'override_selected_font_color' role | Dominik 'dreamsComeTrue' Jasiński | |
2020-03-13 | doc: Sync classref with current source | Rémi Verschelde | |
2020-02-25 | doc: Sync classref for Packed{Int,Float}{32,64}Array additions | Rémi Verschelde | |
2020-02-18 | doc: Sync classref with current source | Rémi Verschelde | |
Handle removal of Pool*Array types and other recent changes. | |||
2020-02-12 | doc: Sync classref with current source | Rémi Verschelde | |
Lots of internal API changes and some docstrings were lost in the conversion. I manually salvaged many of them but for all the rendering-related ones, an additional pass is needed. Added missing enum bindings in BaseMaterial3D and VisualServer. | |||
2020-01-31 | Update docs to version 4.0 | clayjohn | |
2020-01-26 | doc: Drop unused 'category' property from header | Rémi Verschelde | |
We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0. | |||
2020-01-23 | Remove unnecessary extra spaces before comments in code examples. | Michael Alexsander | |
2020-01-12 | doc: Sync classref with current source | Rémi Verschelde | |
2020-01-07 | expose scroll_vertical and scroll_horizontal in TextEdit + documentation | Krystof Klestil | |
2019-11-08 | doc: Sync classref with current source | Rémi Verschelde | |
2019-11-02 | Code format for true/false/null to make documentation consistent | PouleyKetchoupp | |
2019-10-31 | Improved TextEdit search usability & documentation | PouleyKetchoupp | |
2019-10-26 | doc: Sync classref with current source | Rémi Verschelde | |
2019-10-20 | TextEdit syntax highlighting fixes | PouleyKetchoupp | |
- Fixed visual update when using add_keyword_color(), add_color_region(), clear_colors() in scripts - More accurate description for clear_colors() in TextEdit documentation | |||
2019-09-24 | doc: Fix parsing of self-closing XML tags | Rémi Verschelde | |
Follow-up to #31925, `<member />` tags just before `</members>` would cause a parsing issue, and we'd never notice that we're no longer parsing members. Also added space before closing `/>`. | |||
2019-09-24 | Merge pull request #31925 from bojidar-bg/31855-overriden-properties-docs | Rémi Verschelde | |
Add overriden properties to the documentation | |||
2019-09-24 | doc: Sync classref with current source | Rémi Verschelde | |
Fix a few missing bindings or unspecified argument names and default values. | |||
2019-09-04 | Run doctool after overridden properties changes | Bojidar Marinov | |
2019-08-22 | doc: Sync classref with current source | Rémi Verschelde | |
Fix wrong hyperlinks in Control and Tree. | |||
2019-07-09 | TreeItem: Rename new button disable method to set_button_disabled | Rémi Verschelde | |
Follow-up to #30408. Also sync classref with current source. | |||
2019-06-30 | doc: Remove hardcoded default values from descriptions | Rémi Verschelde | |
They are now generated automatically by doctool. | |||
2019-06-30 | doc: Add default values to all properties | Rémi Verschelde | |
Thanks to @bojidar-bg's impressive work in #29380. | |||
2019-06-27 | Proofread and improve the whole class reference | Hugo Locurcio | |
- Document a few more properties and methods - Add more information to many classes - Fix lots of typos and gramar mistakes - Use [code] tags for parameters consistently - Use [b] and [i] tags consistently - Put "Warning:" and "Note:" on their own line to be more visible, and make them always bold - Tweak formatting in code examples to be more readable - Use double quotes consistently - Add more links to third-party technologies | |||
2019-06-26 | doc: Sync classref with current source | Rémi Verschelde | |
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-24 | doc: Sync classref with current source | Rémi Verschelde | |
2019-06-18 | Unexpose subclasses of ResourceFormatLoader and -Saver | Rémi Verschelde | |
ResourceFormatLoader and ResourceFormatSaver are meant to be overridden to add support for different formats in ResourceLoader and ResourceSaver. Those should be exposed as they can be overridden in plugins. On the other hand, all predefined subclasses of those two base classes are only meant to register support for new file and resource types, but should not and cannot be used directly from script, so they should not be exposed. Also unexposed ResourceImporterOGGVorbis (and thus its base class ResourceImporter) which are editor-only. | |||
2019-06-18 | doc: Sync classref with current source | Rémi Verschelde | |
Fix a few bugs. | |||
2019-06-16 | Document TextEdit node | Zak | |
2019-06-08 | Treat hiding_enabled as bool throughout | Nils ANDRÉ-CHANG | |
2019-06-03 | doc: Fix DocData.merge_from copying old setters and getters | Rémi Verschelde | |
This is not necessary and means that some setters and getters can end up wrong if they are changed in the bindings but DocData does not update them when running --doctool. Fixes #29425. Co-authored-by: Bojidar Marinov <bojidar.marinov.bg@gmail.com> | |||
2019-05-23 | Change "Return" to "Returns" where necessary in XML documentation | Sean Heffernan | |
In many of the XML files it had been noted that when the documentation refers to a return value, both "Return" and "Returns" are used. This has now been fixed to only say "Returns". Fixes #28867 | |||
2019-05-21 | doc: Sync classref with current source | Rémi Verschelde | |