Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-22 | Fix various problems with tab-related icons | Michael Alexsander Silva Dias | |
2019-08-30 | Merge pull request #25353 from azagaya/master | Rémi Verschelde | |
Use also invisible tabs to calculate minimum size of tab container | |||
2019-08-30 | Make tab containers in editor, project settings, and export dialog, to use ↵ | azagaya | |
hidden tabs for min size computation. | |||
2019-07-29 | Translate TabContainer titles, when inherited from node name | Florian Kothmeier | |
2019-05-06 | Fix 'TabContainer' not updating its tab titles when locale is changed | Michael Alexsander Silva Dias | |
2019-05-03 | Make 'TabContainer' update when icon/title is changed | Michael Alexsander Silva Dias | |
Fixes #28655. | |||
2019-04-29 | Make buttons that trigger popups have the same scale | Michael Alexsander Silva Dias | |
2019-04-08 | Add ability to edit editor feature profiles | Juan Linietsky | |
Allows enabling/disabling parts of the editor and storing/loading profiles for that. | |||
2019-01-24 | Updates containers minimum size when some constants are modified | groud | |
2019-01-01 | Update copyright statements to 2019 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2018-09-12 | Make core/ includes absolute, remove subfolders from include path | Rémi Verschelde | |
This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes. | |||
2018-07-05 | Merge pull request #19498 from guilhermefelipecgs/fix_regression | Max Hilbrunner | |
Fix "find and replace" initializing with wrong size | |||
2018-06-13 | Fix "find and replace" initializing with wrong size | Guilherme Felipe | |
Fix the code editor outside the allowed limits. | |||
2018-06-12 | Fix TabContainer not showing tabs on left when resizing. | Guilherme Felipe | |
Fix #19510. | |||
2018-04-08 | Drag to rearrange Tabs and TabContainer | ianb96 | |
2018-02-20 | Keep to show current script when closing all docs | volzhs | |
also fix error when removing multiple tabs from TabContainer at same frame. like closing multiple docs at once. Fix #16403 | |||
2018-01-05 | Add missing copyright headers and fix formatting | Rémi Verschelde | |
Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module. | |||
2018-01-01 | Update copyright statements to 2018 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2017-12-11 | Fix Index p_current=0 error at starting editor | volzhs | |
2017-10-30 | Fix crash when click an empty tabs container | sanikoyes | |
2017-10-14 | tab container arrows don't work when a popup was set | santouits | |
2017-09-29 | Vertical alignement (TabContainer menu button) | toger5 | |
2017-09-22 | Remove set_area_as_parent_rect and replace it by ↵ | Gilles Roudiere | |
set_anchors_and_margins_preset(PRESET_WIDE) | |||
2017-09-17 | Merge pull request #10900 from toger5/theme_tab_border | Rémi Verschelde | |
Added border for tabs + container. | |||
2017-09-15 | Added border for tabs + container. | toger5 | |
- moved tabConetent position to be more reasonable. - fixed drawing order to allow those kind of styles. | |||
2017-09-13 | Fix enums bindings | Maxim Sheronov | |
Add missed bindings for enums Move some enums to class to have correct output of api.json | |||
2017-08-27 | Use HTTPS URL for Godot's website in the headers | Rémi Verschelde | |
2017-08-24 | Convert Object::cast_to() to the static version | Hein-Pieter van Braam | |
Currently we rely on some undefined behavior when Object->cast_to() gets called with a Null pointer. This used to work fine with GCC < 6 but newer versions of GCC remove all codepaths in which the this pointer is Null. However, the non-static cast_to() was supposed to be null safe. This patch makes cast_to() Null safe and removes the now redundant Null checks where they existed. It is explained in this article: https://www.viva64.com/en/b/0226/ | |||
2017-08-18 | Rename localization method to `tr` again | Rémi Verschelde | |
Partial revert of #10380 based on contributor ~~bullying~~ feedback. | |||
2017-08-17 | Rename `XL_MESSAGE` aka `tr` to `localize` | Rémi Verschelde | |
Also renames `set_message_translation` to `set_message_localization` for consistency. | |||
2017-08-16 | Synchronize parameter names in definition and declaration | TwistedTwigleg | |
Fixes #10244. | |||
2017-08-13 | Replace GUI anchor type by a float between 0 and 1 | Gilles Roudiere | |
2017-08-10 | Removes type information from method binds | Ignacio Etcheverry | |
2017-06-04 | renamed all Rect2.pos to Rect2.position | alexholly | |
2017-06-03 | InputEvent: Renamed "pos" property to "position" | Andreas Haas | |
Make the naming consistent with other classes. | |||
2017-05-20 | Removal of InputEvent as built-in Variant type.. | Juan Linietsky | |
this might cause bugs I haven't found yet.. | |||
2017-05-03 | Revert "Add new editor and default theme (WIP)" | volzhs | |
This reverts commit f045efe007cffb87238ee519b7f33d710814ded7. | |||
2017-04-27 | Add new editor and default theme (WIP) | Daniel J. Ramirez | |
2017-04-10 | Rename [gs]et_pos to [gs]et_position for Controls | Sergey Pusnei | |
Control set_pos -> set_position Control set_global_pos -> set_global_position [gs]et_mouse_pos -> [gs]et_mouse_position [gs]et_global_mouse_pos -> [gs]et_global_mouse_position fixes #8005 | |||
2017-04-08 | Add "Godot Engine contributors" copyright line | Rémi Verschelde | |
2017-03-05 | A Whole New World (clang-format edition) | Rémi Verschelde | |
I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code | |||
2017-03-05 | - `tab_changed` signal emits only by selecting a different tab. | Thaer Razeq | |
- Added `tab_selected` signal. Which emits a signal by selecting any tab, if current tab is selected again. - Added `get_previous_tab()`. Which returns the previous shown tab. **Note:** only `tab_changed` can modify previous tab index. - Add documentation for the added function and signals. Fix a typo too. | |||
2017-02-27 | Add disabled tabs | Ray Koopa | |
2017-02-27 | Fix several drawing and logic issues in TabContainer | Ray Koopa | |
2017-02-13 | Rename the _MD macro to D_METHOD | Hein-Pieter van Braam | |
This new name also makes its purpose a little clearer This is a step towards fixing #56 | |||
2017-02-13 | Remove use of _SCS from ADD_METHOD | Hein-Pieter van Braam | |
This saves typing and is a step towards fixing #56 | |||
2017-01-16 | Style: Fix statements ending with ';;' | Rémi Verschelde | |
2017-01-13 | New API for visibility in both CanvasItem and Spatial | Juan Linietsky | |
visible (property) - access set_visible(bool) is_visible() is_visible_in_tree() - true when visible and parents visible show() hide() - for convenience | |||
2017-01-08 | renamed _input_event for GUI events to _gui_input, so it's more ↵ | Juan Linietsky | |
differentiated than generalized _input | |||
2017-01-02 | ObjectTypeDB was renamed to ClassDB. Types are meant to be more generic to ↵ | Juan Linietsky | |
Variant. All usages of "type" to refer to classes were renamed to "class" ClassDB has been exposed to GDScript. OBJ_TYPE() macro is now GDCLASS() |