Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-19 | Add documentation for all annotations | Yuri Sizov | |
2022-08-08 | Add support for [param foo] syntax in valid documentation contexts | Yuri Sizov | |
2022-07-29 | Remove Signal connect binds | Juan Linietsky | |
Remove the optional argument p_binds from `Object::connect` since it was deprecated by Callable.bind(). Changed all uses of it to Callable.bind() | |||
2022-07-17 | Add padding for code blocks in the editor help | Hugo Locurcio | |
This improves their appearance, making them look closer to code blocks in the online manual. | |||
2022-07-13 | Merge pull request #62710 from ↵ | Rémi Verschelde | |
Calinou/editor-help-improve-code-kbd-ref-highlight | |||
2022-07-07 | Merge pull request #62108 from bruvzg/font_config_v3 | Rémi Verschelde | |
2022-07-06 | Merge pull request #62713 from YuriSizov/docs-scripting-annotations | Rémi Verschelde | |
2022-07-06 | Refactor Font configuration and import UI, and Font resources. | bruvzg | |
2022-07-05 | Implement a BitField hint | reduz | |
Allows to specify the binder that an enum must be treated as a bitfield. | |||
2022-07-05 | Improve visibility of code, kbd and clickable references in editor help | Hugo Locurcio | |
This adds a background color for inline code, code blocks, keyboard shortcuts and clickable references (such as `[member something]`). | |||
2022-07-04 | Add support for documenting built-in annotations | Yuri Sizov | |
2022-06-29 | Fix `help_title_font_size` editor property to correctly apply to docs | Yuri Rubinsky | |
2022-06-01 | Merge pull request #60984 from fire-forge/doc-icon | Rémi Verschelde | |
Show class icon in the documentation page header | |||
2022-05-30 | Fix help links with threaded RTL. | bruvzg | |
2022-05-25 | Add type icon to documentation page header | FireForge | |
2022-05-21 | Fix class_desc_deselect handling of @GlobalScope.X links | SnailRhymer | |
Fix bug where links to class enums and class constants of the form @GlobalScope.X were broken. For an enum or constant with name "example_name", links of both forms @GlobalScope.example_name and example_name will now be correctly handled, including where example_name contains "." (e.g. Variant.Type). | |||
2022-05-20 | Add a new HashSet template | reduz | |
* Intended to replace RBSet in most cases. * Optimized for iteration speed | |||
2022-05-19 | [RTL] Add support for shaping in background thread. | bruvzg | |
2022-05-16 | Replace most uses of Map by HashMap | reduz | |
* Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated! | |||
2022-05-12 | Fix _class_desc_select to handle Variant.Type | SnailRhymer | |
Change the order of checks in _class_desc_select to first try checking current page and GlobalScope before resorting to slicing either side of ".". Bug was caused by assumption that no enums or constants in @GlobalScope would contain ".". This is still assumed elsewhere in the file, so bugs may persist. Format some comments. | |||
2022-04-23 | Rename theme properties to include underscores | FireForge | |
- check_vadjust -> check_v_adjust - close_h_ofs -> close_h_offset - close_v_ofs -> close_v_offset - commentfocus -> comment_focus - hseparation -> h_separation - ofs -> offset - selectedframe -> selected_frame - state_machine_selectedframe -> state_machine_selected_frame - table_hseparation -> table_h_separation - table_vseparation -> table_v_separation - vseparation -> v_separation | |||
2022-03-22 | [Help] Add simulated slanted font support to the editor help. | bruvzg | |
2022-03-12 | Initialize bools in the headers in editor | Aaron Franke | |
2022-03-03 | Use vformat() instead of string concatenation inside TTR() | Haoyu Qiu | |
2022-02-16 | Port existing _notification code to use switch statements (part 1/3) | jmb462 | |
2022-02-12 | Improve compilation speed (forward declarations/includes cleanup) | Hendrik Brucker | |
2022-02-08 | Revert "Add missing SNAME macro optimization to all theme methods call" | Rémi Verschelde | |
This reverts commit a988fad9a092053434545c32afae91ccbdfbe792. As discussed in #57725 and clarified in #57788, `SNAME` is not meant to be used everywhere but only in critical code paths. For theme methods specifically, it was by design that only getters use `SNAME` and not setters. | |||
2022-02-06 | Add missing SNAME macro optimization to all theme methods call | jmb462 | |
2022-02-06 | Add missing SNAME macro optimization in some function calls | jmb462 | |
2022-02-05 | Rework TextureButton stretch | kobewi | |
2022-02-03 | Merge pull request #57562 from AnilBK/string-add-contains | Rémi Verschelde | |
String: Add contains(). | |||
2022-02-04 | String: Add contains(). | Anilforextra | |
2022-02-03 | Remove get_focus_owner() from Control, replaced by ↵ | Gilles Roudière | |
get_viewport()->gui_get_focus_owner() | |||
2022-02-02 | EditorHelpBit: Fix content height fit and RTL theme propagation | Rémi Verschelde | |
This reverts #51619 and fixes the issue properly, as well as enabling `fit_content_height` which is necessary following #57304. Fixes #57174. Also adds a placeholder for property and signal tooltips with no description, factoring the code while at it. Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com> | |||
2022-01-30 | Fix theming of doc background | Yuri Roubinsky | |
2022-01-24 | [Editor] Do not update editor help theme, if calculated margin hasn't changed. | bruvzg | |
2022-01-21 | Use a fixed-width font for internal references in the editor help | Hugo Locurcio | |
Since internal references are often written in scripts, it makes sense to use a fixed-width font for them. | |||
2022-01-18 | Improve spacing in built-in class reference | Yuri Sizov | |
2022-01-07 | Generate editor docs on a thread | reduz | |
* The main generation could not be moved to a thread, as it instantiates classes to get default values, interacts with ProjectSettings, etc. * Only uncompressing documentation and merging it is threaded. * Seems to improve editor load times by 0.5 seconds. | |||
2022-01-03 | Update copyright statements to 2022 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2022-01-03 | Merge pull request #55487 from YeldhamDev/scroll_bikeshedding | Rémi Verschelde | |
2021-12-09 | Replace String comparisons with "", String() to is_empty() | Nathan Franke | |
Also: - Adds two stress tests to test_string.h - Changes to .empty() on std::strings | |||
2021-12-09 | align to horizontal_alignment, valign to vertical_alignment, related | Nathan Franke | |
2021-12-03 | Make overridden properties link to parent definition | Yuri Sizov | |
Co-authored-by: Josh DeGraw <joshmdegraw@gmail.com> | |||
2021-12-01 | Sort and group theme properties in docs, improve formatting for theme and enums | Yuri Sizov | |
2021-11-30 | Rename all methods that return `ScrollBar` nodes to `get_*_scroll_bar()` | Michael Alexsander | |
2021-11-18 | Add [theme_item] tag to editor help | kobewi | |
2021-11-15 | Allow dehardcoding documentation branch and URL in docs links | Rémi Verschelde | |
This makes it possible to change the branch of the documentation that URLs are pointing to without having to modify all class reference files. In the XML class reference, the `$DOCS_URL` placeholder should be used, and will be replaced automatically in the editor and when generating the RST class reference. The documentation branch string is set in `version.py`. Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro> | |||
2021-11-12 | Use "enum class" for input enums | Aaron Franke | |
2021-11-11 | String: Remove `erase` method, bindings can't mutate String | Rémi Verschelde | |