Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-25 | Allow to remove 2D editor limits | Tomasz Chabora | |
2019-06-20 | Add option to toggle console window on Windows | Luka Dornhecker | |
This is an editor setting and its value can also be toggled using an entry in the Editor toolbar. The console will still appear briefly when starting the project manager or editor, as it's still compiled as console application. Does not impact exported games, which will still run without console in release and with console in debug mode. A project setting or export option could be added to disable it in debug mode if there's demand for it, but that would greatly reduce the usefulness of debug builds if Windows users can no longer report error and crash messages. Fixes #17889. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2019-06-14 | Fix help source font setting and related cleanup | Rémi Verschelde | |
This was a regression from #28107 due to a typo in the `initial_set` call. I used the opportunity to harmonize the font settings by ensuring we only get values in `editor_fonts.cpp` and set them all with proper and consistent hint ranges in `editor_settings.cpp`. Fixes #29774. | |||
2019-06-13 | Merge pull request #29129 from kis3lori/remove-save-theme-for-default | Rémi Verschelde | |
Created a fallback from the "Save Theme" button to "Save Theme As" when a default theme is in use. | |||
2019-06-13 | Created a fallback from the "Save Theme" button to "Save Theme As" when a ↵ | Kis Levente Lorand | |
default theme is in use. | |||
2019-06-12 | Merge pull request #29517 from KoBeWi/pan_shop | Rémi Verschelde | |
Allow to change 2D pan hotkey | |||
2019-06-11 | Fix error macro calls not ending with semicolon | Rémi Verschelde | |
It's not necessary, but the vast majority of calls of error macros do have an ending semicolon, so it's best to be consistent. Most WARN_DEPRECATED calls did *not* have a semicolon, but there's no reason for them to be treated differently. | |||
2019-06-05 | Allow to change 2D pan hotkey | Tomasz Chabora | |
2019-05-31 | Merge pull request #27334 from qarmin/add_50_percent_editor_scale | Rémi Verschelde | |
Add support for 50% editor scale | |||
2019-05-30 | Decrease the editor FPS cap when the window is unfocused | Hugo Locurcio | |
This decreases CPU/GPU usage when the window is unfocused, which can be beneficial to laptop users. This also makes the low-processor mode sleep project setting no longer affect the editor. Instead, two new editor settings now define the duration of sleeping when the editor is focused and unfocused. This closes #24209 and partially addresses #29257. | |||
2019-05-28 | Merge pull request #28107 from Amssat221/issue28105 | Rémi Verschelde | |
Set range (10-50) to help source font size | |||
2019-05-21 | i18n: Skip unsupported locales for editor translations | Rémi Verschelde | |
Godot currently can't properly render scripts that require Right-To-Left and font shaping support, so we skip those. This is a temporary measure until these features are supported. Fixes #28577. | |||
2019-05-20 | Merge pull request #28218 from KoBeWi/b00km4rk5 | Rémi Verschelde | |
Add bookmarks for easier code navigation | |||
2019-05-20 | Merge pull request #27559 from groud/anchor_mode | Rémi Verschelde | |
Improve the anchors and margin workflow | |||
2019-05-17 | Merge pull request #28366 from iwek7/feature/issue28355/showSpacesInEditor | Max Hilbrunner | |
Add feature to show spaces in code editor | |||
2019-05-16 | Merge pull request #27097 from siddharth952/master | Max Hilbrunner | |
Adjusts the default color for search border | |||
2019-05-14 | Merge pull request #27569 from Faless/net/ipv4_link_local | Max Hilbrunner | |
Exclude link-local IPv4s from editor host list. | |||
2019-05-13 | Improve the anchors and margin workflow | Gilles Roudiere | |
2019-05-05 | Add bookmarks for easier code navigation | Tomasz Chabora | |
2019-05-02 | Update editor_settings.cpp | Siddharth | |
Update editor_settings.cpp Update editor_themes.cpp Update editor_settings.cpp | |||
2019-04-30 | Set range and change EDITOR_DEF to EDITOR_GET | Guillermo | |
Fix indentation Fix Indentation! Remove 14 | |||
2019-04-30 | Merge pull request #27913 from Amssat221/issue27912 | Rémi Verschelde | |
Set a range for line spacing | |||
2019-04-30 | Merge pull request #24437 from mateusfccp/single_quotes_option | Rémi Verschelde | |
Add settings for single-quotes on completion | |||
2019-04-30 | Issue-28355 - show spaces in editor | miwanczuk | |
2019-04-30 | Merge pull request #25751 from Calinou/faster-script-error-checking | Rémi Verschelde | |
Allow floating-point values in the idle parse delay editor setting | |||
2019-04-30 | Set range for line spacing | gsegovia2018 | |
2019-04-26 | Allow floating-point values in the idle parse delay editor setting | Hugo Locurcio | |
This also makes value changes effective without having to restart the editor. | |||
2019-04-23 | Added a marker in text_edit that tells which row is executing. | Rikhardur Bjarni Einarsson | |
2019-04-20 | Display connection information in the script editor | Paulb23 | |
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-04-07 | Add 50% scale in Godot | qarmin | |
2019-04-05 | Add support for type hints in non-default script editor templates | Hugo Locurcio | |
This also refactors template processing to avoid repetition. This closes #27074. | |||
2019-03-31 | Exclude link-local IPv4s from editor host list. | Fabio Alessandrelli | |
IPv4 has link-local addresses like IPv6 (block 169.254.0.0/16). Those addresses should not be considered a valid option when selecting the `remote_host` setting for the debugger. | |||
2019-03-27 | Use the accent color to highlight selected text | Hugo Locurcio | |
This makes selections easier to see, while making them fit better within the editor theme. This closes #22552. | |||
2019-03-16 | Fix misplaced hint for interface/theme/accent_color | Rémi Verschelde | |
Supersedes #26992. | |||
2019-03-06 | Cleanup relationship line coding after 5f079e2 | Michael Alexsander Silva Dias | |
2019-03-06 | -Make tileset and meshlibrary edit in a separate inspector, fixes #26671 | Juan Linietsky | |
-Made relationship lines appear based on theme settings, not previous hack -Fix drawing of relationship lines (was broken) -Fix double initialization of theme settings | |||
2019-03-06 | Merge pull request #22716 from Chaosus/update_theme | Rémi Verschelde | |
Make theme changing no longer requires restart to be fully applied | |||
2019-03-04 | Fix creating editor data, config and cache paths | Rémi Verschelde | |
We used to abort if the system-specific data folder (e.g. `~/.local` or `%APPDATA%`) is missing, but the next code chunk actually creates it with `make_dir_recursive` if missing. Fixes #26598. | |||
2019-02-25 | Move the FileSystem dock layout properties to the per-project layout file | Gilles Roudiere | |
2019-02-08 | Add a setting hint for the Output panel font size | Hugo Locurcio | |
This closes #21237. | |||
2019-01-01 | Update copyright statements to 2019 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2018-12-18 | Add settings for single-quotes on completion | Mateus Felipe C. C. Pinto | |
2018-12-15 | 24303: remember sorting order in the project manager | Gleb Mineev | |
2018-12-13 | Revert "Use more subtle indentation guides in the script editor" | Rémi Verschelde | |
2018-12-12 | EditorSettings: Remove unused settings from initial set | Rémi Verschelde | |
Fixes #24291. | |||
2018-12-12 | Code style: Sort EditorSettings initial set by section | Rémi Verschelde | |
2018-12-09 | Merge pull request #20725 from Calinou/textedit-subtle-indent-guides | Rémi Verschelde | |
Use more subtle indentation guides in the script editor | |||
2018-11-20 | Merge pull request #23645 from Calinou/add-dynamicfont-antialias-option | Rémi Verschelde | |
Add a property to control DynamicFont anti-aliasing | |||
2018-11-17 | Fixup to previous commit, missed one occurrence | Rémi Verschelde | |