Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-05-12 | Add a new HashMap implementation | reduz | |
Adds a new, cleaned up, HashMap implementation. * Uses Robin Hood Hashing (https://en.wikipedia.org/wiki/Hash_table#Robin_Hood_hashing). * Keeps elements in a double linked list for simpler, ordered, iteration. * Allows keeping iterators for later use in removal (Unlike Map<>, it does not do much for performance vs keeping the key, but helps replace old code). * Uses a more modern C++ iterator API, deprecates the old one. * Supports custom allocator (in case there is a wish to use a paged one). This class aims to unify all the associative template usage and replace it by this one: * Map<> (whereas key order does not matter, which is 99% of cases) * HashMap<> * OrderedHashMap<> * OAHashMap<> | |||
2022-05-06 | Cleanup metadata usage | kobewi | |
2022-04-05 | [Input] Add extra `shortcut_input` input processing step to process Unicode ↵ | bruvzg | |
character input with Alt / Ctrl modifiers, after processing of shortcuts. | |||
2022-03-28 | Add property name style toggle to Inspector | Haoyu Qiu | |
2022-03-17 | Make `TabBar/Container` default their alignments to the left instead of center | Michael Alexsander | |
2022-03-12 | Initialize bools in the headers in editor | Aaron Franke | |
2022-03-10 | Merge pull request #58706 from timothyqiu/property-i18n | Rémi Verschelde | |
2022-03-10 | Merge pull request #56476 from gerhean/fix_shortcut_collapse_after_edit | Rémi Verschelde | |
2022-03-05 | Fix color pickers closing in editor settings | kobewi | |
2022-03-05 | Merge pull request #53839 from EricEzaM/editor-settings-changed-settings | Rémi Verschelde | |
Added ability to get list of editor settings changed when saving editor settings. Optimised settings changed notification. | |||
2022-03-05 | Made use of EditorSettings 'settings changed' to optimise settings changed ↵ | Eric M | |
notifications. | |||
2022-03-03 | Make `TabContainer` use `TabBar` internally | Michael Alexsander | |
2022-03-03 | i18n: Make property paths and categories translatable | Haoyu Qiu | |
2022-02-18 | Fixed issues with shortcut checking in 3d node editor | Eric M | |
The freelook shortcuts now use the action system by proxy. This allows the actions system to be leveraged for input checking. When the shortcut changes, the respective action is updated. | |||
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 | Re-add missing `SNAME` macros in `get_theme_*` calls | Rémi Verschelde | |
They were removed in the previous commit reverting the addition of `SNAME` to `add_theme_*` and theme setter methods, which is not wanted. | |||
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-05 | Add shortcut_cell double click functionality | Ger Hean | |
2022-02-05 | Fix shortcut collapse after edit | Ger Hean | |
2022-02-01 | Minor fixes/refactoring of project and editor setting dialogs | Hendrik Brucker | |