Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-03 | Rename visual shader editor setting category for proper capitalization | Hugo Locurcio | |
2022-07-31 | Fix EditorSettings crashes due to nullptr dereference | Sean Kim | |
Fixes #45979 Noted a few places in this file that would have similar errors, so any access to the EditorSettings singleton has had a check added. | |||
2022-07-29 | Swap arguments of ResourceSaver.save() | kobewi | |
2022-07-29 | Move editor paths into the EditorPaths class | Aaron Franke | |
2022-07-25 | When selecting Nodes in the Scene Tree, if the current EditorPlugin is ↵ | Alfred R. Baudisch | |
"Script" and if text_editor/behavior/navigation/stay_in_script_editor_on_node_selected is true, force inspector_only in order to not switch the EditorPlugin to the Node's main plugin. | |||
2022-07-22 | Rename directory for export templates from templates to export_templates | Aaron Franke | |
2022-07-21 | Rename OSX to macOS and iPhoneOS to iOS. | bruvzg | |
2022-07-06 | Refactor Font configuration and import UI, and Font resources. | bruvzg | |
2022-07-03 | Add the ability to drag the code completion scrollbar using the mouse click | MinusKube | |
2022-06-26 | Add an option to drag'n'drop selected text in TextEdit | ConteZero | |
2022-06-08 | i18n: Misc fixes translation strings | Rémi Verschelde | |
Adds some translator comments to solve some questions raised on Weblate. | |||
2022-06-03 | Merge pull request #61481 from Calinou/profiler-increase-frame-history | Fabio Alessandrelli | |
Increase the editor profiler frame history default and maximum limit | |||
2022-05-30 | Improve Graphedit connection lines | Hendrik Brucker | |
2022-05-28 | Increase the editor profiler frame history default and maximum limit | Hugo Locurcio | |
The new default value (1800) allows storing 30 seconds of profiling at 60 FPS. The new maximum value (10000) allows storing about 3 minutes of profiling at 60 FPS. The profiler graph will scale accordingly to the chosen setting, so the default value is kept relatively low to prevent the graph from looking too squished on narrow displays. | |||
2022-05-23 | Increase saturation of accent color on the Gray editor theme preset | Hugo Locurcio | |
This also renames the Gray editor theme preset to use US spelling. | |||
2022-05-19 | Use suffixes for units in nodes and resources | Aaron Franke | |
2022-05-19 | Use range iterators for RBSet in most cases | Aaron Record | |
2022-05-16 | Merge pull request #60463 from Geometror/improve-vs-1 | Rémi Verschelde | |
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 | 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-04-30 | Improve the VisualShader/VisualScript editor UI | Hendrik Brucker | |
2022-04-20 | Avoid setting sub-window or started project window positions, if it's ↵ | bruvzg | |
impossible to get screen rect. | |||
2022-04-12 | Merge pull request #54740 from ↵ | Rémi Verschelde | |
LightningAA/project-manager-sort-by-most-recent-as-default | |||
2022-04-11 | Make FileAccess and DirAccess classes reference counted. | bruvzg | |
2022-04-06 | Fix some issues found by cppcheck. | bruvzg | |
2022-04-04 | Merge pull request #59866 from m4gr3d/update_default_display_scale_main | Rémi Verschelde | |
2022-04-04 | Update the editor display scale based on the device's scaled density | Fredia Huya-Kouadio | |
2022-04-03 | Fix TextEdit v_scroll_speed invalid values breaks wheel scrolling | jmb462 | |
2022-03-27 | Mark Editor SSL Certificates setting as require restart | Haoyu Qiu | |
2022-03-25 | Convert the editor and default theme fonts to WOFF2 format to save space. | bruvzg | |
2022-03-21 | Merge pull request #59373 from bruvzg/fix_editor_font_change | Rémi Verschelde | |
[Editor] Fix reloading editor theme on font / font size setting change. | |||
2022-03-21 | Merge pull request #59367 from Calinou/script-editor-decrease-line-spacing | Rémi Verschelde | |
Decrease the default line spacing in the script editor | |||
2022-03-21 | Merge pull request #59366 from Calinou/editor-pseudolocalization-move-setting | Rémi Verschelde | |
Move the pseudolocalization editor setting to a debug section | |||
2022-03-21 | [Editor] Fix reloading editor theme on font / font size setting change. | bruvzg | |
2022-03-21 | Decrease the default line spacing in the script editor | Hugo Locurcio | |
This brings the level of line spacing closer to what it was like in Godot 3.x, which improves usability on small displays. This also decreases the default line spacing for fixed-width texts in the About dialog (license text). | |||
2022-03-21 | Move the pseudolocalization editor setting to a debug section | Hugo Locurcio | |
This moves the setting in question to the bottom of the Editor Settings, which makes it less likely to be accidentally enabled. | |||
2022-03-20 | Fix getaddrinfo failed with undefined proxy config | Tais P. Hansen | |
HTTPClientTCP expects proxy host to be empty or port to be -1 to ignore the proxy. When getting the proxy config from the settings file, the values will default to U"null" and 0, respectively, making HTTPClientTCP to attempt to use the values as a proxy, which causes getaddrinfo to fail looking up a "null" hostname. Setting the default config values seems like a good approach to prevent this issue. Fixes #59037 | |||
2022-03-13 | Improve scene tab close button options | kobewi | |
2022-03-12 | Initialize bools in the headers in editor | Aaron Franke | |
2022-03-11 | Convert uses of `DirAccess *` to `DirAccessRef` to prevent memleaks | Rémi Verschelde | |
`DirAccess *` needs to be deleted manually, and this is often forgotten especially when doing early returns with `ERR_FAIL_COND`. `DirAccessRef` is deleted automatically when it goes out of scope. Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com> | |||
2022-03-09 | Replace `TabBar`'s `min_width` with `max_tab_width` and expose it | Michael Alexsander | |
2022-03-06 | Remove duplicate editor settings definitions | kobewi | |
2022-03-05 | Added ability to retrieve array of changed settings changed when it is saved. | Eric M | |
2022-02-15 | Editor: Cleanup some includes dependencies | Rémi Verschelde | |
Removes some unnecessary includes from `editor_node.h`, and instead add those where they're used. Removes unnecessary `editor_node.h` includes in various editor classes. Renames `dynamicfont` to `dynamic_font` in a couple files. Misc cleanup while jumping through that rabbit hole. | |||
2022-02-15 | Merge pull request #57877 from bruvzg/subpixel_gl_pos | Rémi Verschelde | |
2022-02-14 | Improve completion scroll bar visibility in the script editor | Hugo Locurcio | |
This makes the scroll bar bar thicker and more opaque (roughly matching the editor theme's scroll bar by default). | |||
2022-02-12 | Add sub-pixel glyph positioning support. | bruvzg | |
2022-02-12 | Use EditorFileDialog instead of FileDialog in the project manager | Hendrik Brucker | |
2022-02-02 | Vectors: Use clear() and has(). | Anilforextra | |
Use clear() instead of resize(0). Use has() instead of "find(p_val) != -1". | |||
2022-01-24 | Fix translation with multiple sources for the same language. | bruvzg | |
Remove unnecessary locale length checks. Add "C" -> "en" locale remap. |