Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-08-10 | Merge pull request #49417 from Bhu1-V/gsoc-cmd-plt | Rémi Verschelde | |
Command Palette For Godot | |||
2021-08-10 | Merge pull request #21922 from aaronfranke/double | Rémi Verschelde | |
Some work on double-precision support | |||
2021-08-09 | Follow-Up Add SNames to get theme icon | Nathan Franke | |
2021-08-09 | Some work on double support | Aaron Franke | |
2021-08-09 | Use doubles for time in many other places | Aaron Franke | |
2021-08-09 | Merge pull request #43158 from nathanfranke/fix-gradient-and-draw-tile | Rémi Verschelde | |
Fix Gradient and Color Picker checkerboard, Fix tile parameter for CanvasItem.draw_texture_rect | |||
2021-08-09 | Added EditorCommandPalette | Bhuvan Vemula | |
2021-08-08 | [Text Server] Improve object (image/table) inline alignment. | bruvzg | |
2021-08-07 | Fix Gradient, Color Picker BG, Fix CanvasItem::draw_texture_rect p_tile | Nathan Franke | |
2021-08-07 | Redraw on item list custom bg/fg colour change | Paulb23 | |
2021-08-05 | Shortcut: Rename `shortcut` property to `event` | Rémi Verschelde | |
Having a property which has the same name as its class leads to confusing situations (e.g. `BaseButton` has a `shortcut` property of type `Shortcut` which has a `shortcut` property of type `InputEvent`). Also renames `is_event` to `matches_event`, and `is_valid` to `has_valid_event` to better reflect what the methods check. | |||
2021-08-03 | Merge pull request #51177 from kleonc/tab_container-drop-tab-index-fix | Rémi Verschelde | |
TabContainer Fix moving dropped tab to incorrect child index | |||
2021-08-02 | Improve CodeEdit's callhint highlight visibility | Hugo Locurcio | |
This makes the currently edited parameter more visible in the script editor's code completion hint. | |||
2021-08-02 | Merge pull request #50122 from Paulb23/code_edit_auto_brace_completion | Rémi Verschelde | |
2021-08-02 | TabContainer Fix moving dropped tab at incorrect child index | kleonc | |
2021-08-02 | Implements TileMap layers and move TileSetPlugins's functions to the TileMap ↵ | Gilles Roudière | |
node instead | |||
2021-08-01 | Clean up and complete CodeEdit inspector and docs | Paulb23 | |
2021-08-01 | Move symbol lookup into CodeEdit | Paulb23 | |
2021-08-01 | Move line length guidelines into CodeEdit | Paulb23 | |
2021-08-01 | Move brace matching into CodeEdit | Paulb23 | |
2021-08-01 | Move auto brace completion to CodeEdit | Paulb23 | |
2021-07-31 | Make theme item overrides more obvious in the Inspector | Yuri Sizov | |
2021-07-30 | Fix "Custom *" theme sections being inside "Auto Translate" | Michael Alexsander | |
2021-07-29 | Add `auto_translate` toggle for automatic translation | Michael Alexsander | |
2021-07-27 | Multiple cosmetic fixes for embedded windows | Michael Alexsander | |
2021-07-26 | Make `switch_on_hover` work on embedded windows | Michael Alexsander | |
2021-07-25 | Merge pull request #50835 from bruvzg/optimize_is_rtl | Rémi Verschelde | |
Optimise `is_layout_rtl`. | |||
2021-07-25 | Merge pull request #50809 from akien-mga/iterators-const-references | Rémi Verschelde | |
2021-07-25 | Use const references where possible for List range iterators | Rémi Verschelde | |
2021-07-25 | Fix various typos with codespell | luz paz | |
Found via `codespell -q 3 -S ./thirdparty,*.po,./DONORS.md -L ackward,ang,ans,ba,beng,cas,childs,childrens,dof,doubleclick,fave,findn,hist,inout,leapyear,lod,nd,numer,ois,ony,paket,seeked,sinc,switchs,te,uint` | |||
2021-07-25 | Optimise `is_layout_rtl` by caching its return value. | bruvzg | |
2021-07-23 | Use C++ iterators for Lists in many situations | Aaron Franke | |
2021-07-23 | Fix popup submenu in single-window mode | jfons | |
The internal processing code only works for OS windows, since it takes the mouse position relative to the window and not the viewport. Now we make sure it's not called in single-window mode. | |||
2021-07-22 | Make `MenuButton`'s `switch_on_hover` work again | Michael Alexsander | |
2021-07-21 | Fix logic for Popup closing when parent is focused | PouleyKetchoupp | |
The member popped_up is used to avoid closing a Popup before it had a chance to be focused. It wasn't reset properly when the popup is hidden, causing the Popup to close right after showing in some random cases (spotted on X11, might not happen on Windows). | |||
2021-07-20 | Merge pull request #50655 from JFonS/sname_opt | Rémi Verschelde | |
Editor StringName and Viewport optimizations | |||
2021-07-20 | Editor StringName and Viewport optimizations | Joan Fons | |
* Added explicit return type to the SNAME macro. * Add some extra SNAME usages. * Change some ClassDB methods to use const StringName & arguments. * Cache the Window parent in Control because it's used in is_layout_rtl(), which is called often. * Only enable internal processing for viewports that need it. * Change CanvasItem::group to be a StringName because it's only used as that. | |||
2021-07-20 | Merge pull request #50605 from Calinou/tweak-shader-code-style | Rémi Verschelde | |
Use C++11 raw literals for shader code to improve readability | |||
2021-07-19 | Merge pull request #50588 from bruvzg/menu_gen | Rémi Verschelde | |
Optimize LineEdit and TextEdit menu item generation. | |||
2021-07-19 | Merge pull request #50606 from Chaosus/textedit_fix_guttertype | Rémi Verschelde | |
Fixed typos in `TextEdit::GutterType` enum | |||
2021-07-19 | Fixed typos in `TextEdit::GutterType` enum | Yuri Roubinsky | |
2021-07-19 | Use C++11 raw literals for shader code to improve readability | Hugo Locurcio | |
In files that have lots of branching, `\t` was replaced with a tab character instead. | |||
2021-07-19 | Optimize LineEdit and TextEdit menu item generation. | bruvzg | |
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-07-17 | Create many types of popups on demand | reduz | |
* LineEdit popups created on demand. * TextEdit popups created on demand. * SpinSlider popups created on demand. * ResourcePicker popups created on demand. Improves editor responsiveness. | |||
2021-07-14 | Merge pull request #48502 from KoBeWi/visual_button | Rémi Verschelde | |
Add set_pressed_no_signal method to BaseButton | |||
2021-07-13 | Add header theme type variations to labels | kobewi | |
2021-07-13 | Merge pull request #50169 from pycbouh/theme-type-variations | Rémi Verschelde | |
2021-07-13 | Add set_pressed_no_signal method to BaseButton | kobewi | |
2021-07-13 | Merge pull request #50086 from Geometror/label-improve-layout-options | Rémi Verschelde | |
Improvements to Label's layout options |