Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-01-05 | One Copyright Update to rule them all | Rémi Verschelde | |
As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see". | |||
2022-10-27 | Fix problems with `tab_changed` signal when removing multiple tabs at once | Michael Alexsander | |
2022-09-18 | Make the inner TabBar in a TabContainer behave as if it were in a Container | Rindbee | |
2022-09-18 | Fix minimum size calculation for TabContainer | Rindbee | |
2022-09-01 | Add a lifecycle method for manual theme item caching to Control | Yuri Sizov | |
2022-08-30 | Merge pull request #65042 from YuriSizov/editor-docks-tabbar-bg | Rémi Verschelde | |
2022-08-29 | Add background to TabContainer's tabbar and editor docks | Yuri Sizov | |
2022-08-29 | Rename `CanvasItem.update()` to `queue_redraw()` | Micky | |
Affects a lot of classes. Very thoroughly checked signal connections and deferred calls to this method, add_do_method/add_undo_method calls, and so on. Also renames the internal `_update_callback()` to `_redraw_callback()` for consistency. Just a few comments have also been changed to say "redraw". In CPUParticles2D, there was a private variable with the same name. It has been renamed to `do_redraw`. | |||
2022-08-23 | Add some codes, returnes directly if the value is not changed. | 风青山 | |
Avoid executing the following value-changed logics if the value does not really change. | |||
2022-07-18 | Rename Control PRESET_WIDE to PRESET_FULL_RECT | FireForge | |
2022-07-18 | Fix getting outdated tab controls | Rindbee | |
2022-06-23 | repaint tab container when changing tab visibility | Nathan Franke | |
2022-05-06 | Cleanup metadata usage | kobewi | |
2022-04-25 | Fix font_size not working in TabContainer | Rindbee | |
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-04-04 | Add action map editor for OpenXR | Bastiaan Olij | |
2022-03-31 | Small fixes for `TabContainer` | Michael Alexsander | |
2022-03-21 | Add visual marker when dragging and dropping tabs | Michael Alexsander | |
2022-03-08 | Merge pull request #58850 from YeldhamDev/more_tab_regressions | Rémi Verschelde | |
2022-03-08 | Fix crash with all_tabs_in_front | Paweł Fertyk | |
Fixes #58790. | |||
2022-03-06 | Fix regressions with nameless and icon-only tabs | Michael Alexsander | |
2022-03-05 | Change tabs_rearrange_group to property | kobewi | |
2022-03-04 | Fix renaming `TabContainer` children not updating tab names when outside the ↵ | Michael Alexsander | |
tree | |||
2022-03-03 | Make `TabContainer` use `TabBar` internally | Michael Alexsander | |
2022-02-15 | Use `switch` consistently in `_notification` (`scene` folder) | Rémi Verschelde | |
2022-02-10 | Reorganize inspector layout workflow for Control nodes | Yuri Sizov | |
2022-02-06 | Add missing SNAME macro optimization in some function calls | jmb462 | |
2022-01-05 | Merge pull request #56206 from ↵ | Rémi Verschelde | |
KoBeWi/random_call_deferred_to_the_rescue_once_again | |||
2022-01-03 | Update copyright statements to 2022 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2021-12-23 | Fix TabContainer not setting layout immediately | kobewi | |
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-06 | Rename minimum_size_changed() method | kobewi | |
2021-11-12 | Use "enum class" for input enums | Aaron Franke | |
2021-09-25 | Merge pull request #53049 from AnilBK/dont-construct-2 | Rémi Verschelde | |
2021-09-25 | Construct values only when necessary. | Anilforextra | |
2021-09-24 | Expose `TabContainer`'s tab hidding for scripts | Michael Alexsander | |
2021-09-09 | Removed unused Ref<Font> font variables | Matthew Newall | |
2021-09-07 | Merge pull request #52050 from nobuyukinyuu/bind-get-tab-idx-at-point-40 | Gilles Roudière | |
Bind TabContainer::get_tab_idx_at_point() to ClassDB | |||
2021-09-01 | TabContainer Fix drawing current tab when it's disabled | kleonc | |
2021-08-29 | Bind TabContainer::get_tab_idx_at_point() to ClassDB | nobuyuki_nyuu | |
2021-08-28 | Add support for internal nodes | kobewi | |
2021-08-23 | Entirely removes BIND_VMETHOD in favor of GDVIRTUAL | reduz | |
* `_gui_input`, `_input`, `_unhandled_input` and `_unhandled_key_input` are now regular C++ virutal functions. * Everything else converted to GDVIRTUAL * BIND_VMETHOD is gone, always use the new syntax from now on. Creating `_gui_input` method and using the binder to register events will no longer work, simply override the virtual function now. | |||
2021-08-04 | TabContainer: Fix error on removing top-level Control child, Remove _get_tab ↵ | kleonc | |
method | |||
2021-08-02 | TabContainer Fix moving dropped tab at incorrect child index | kleonc | |
2021-07-29 | Add `auto_translate` toggle for automatic translation | Michael Alexsander | |
2021-07-18 | Optimize StringName usage | reduz | |
* Added a new macro SNAME() that constructs and caches a local stringname. * Subsequent usages use the cached version. * Since these use a global static variable, a second refcounter of static usages need to be kept for cleanup time. * Replaced all theme usages by this new macro. * Replace all signal emission usages by this new macro. * Replace all call_deferred usages by this new macro. This is part of ongoing work to optimize GUI and the editor. | |||
2021-06-19 | Rename `instance()`->`instantiate()` when it's a verb | Lightning_A | |
2021-05-07 | Fixed bug in tab_container with hidden tabs | besh81 | |
Fix a bug that occour when there are hidden tabs in tab_container. The visualization isn't correct due to missing values in tab_widths array. | |||
2021-04-05 | Fix crashes in *_input functions | Rafał Mikrut | |