Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-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 | |
2018-11-10 | Add a property to control DynamicFont anti-aliasing | Hugo Locurcio | |
- Editor font anti-aliasing can now be disabled in the Editor Settings. - DynamicFonts used in projects can now have their anti-aliasing disabled in their DynamicFontData child. Changes will be visible upon reloading the scene in the editor. | |||
2018-11-01 | Merge pull request #22977 from CakHuri/draw_relationship_lines-ON | Rémi Verschelde | |
Made 'draw relationship lines' (at Editor Settings) enabled by default. | |||
2018-10-25 | Make theme changing no longer requires restart to be fully applied | Chaosus | |
2018-10-14 | Increase the source font's line spacing | Hugo Locurcio | |
This also increases line spacing in license texts in the editor's About dialog. | |||
2018-10-13 | Made 'draw relationship lines' (at Editor Settings) enabled by default. | M. Huri | |
2018-10-02 | Remove "Doc Path" setting | Michael Alexsander Silva Dias | |
2018-10-03 | Use more subtle indentation guides in the script editor | Hugo Locurcio | |
2018-09-24 | Added viewport border color setting for canvas item editor | Chaosus | |
2018-09-22 | Settings: Sort text editor themes alphabetically | Rémi Verschelde | |
2018-09-21 | Remove auto disabling of the split-view in the FileSystem dock | groud | |
2018-09-20 | Merge pull request #21426 from groud/add_files_to_tree_view | Rémi Verschelde | |
Add files to tree view | |||
2018-09-18 | Fixes favorites not updating and rename favorite_dirs to favorites | groud | |
2018-09-15 | Allow system certs file to be used by Editor. | Fabio Alessandrelli | |
Note, it will only used by the Editor, not when running the game. This allows package maintainer to compile Godot to use system installed certificates when accessing the AssetLib. | |||
2018-09-14 | Merge the disable_split and show_files_in_tree settings | groud | |
2018-09-14 | Add thumnails to the tree view | groud | |
2018-09-14 | Add support for files in the tree view | groud | |
2018-08-24 | Make some debug prints verbose-only, remove others | Rémi Verschelde | |
2018-08-24 | Add print_verbose to print to stdout only in verbose mode | Rémi Verschelde | |
Equivalent of the cumbersome: if (OS::get_singleton()->is_stdout_verbose()) print_line(msg); | |||
2018-08-22 | Merge pull request #21150 from Calinou/more-window-placement-options | Rémi Verschelde | |
Add more project window placement options | |||
2018-08-22 | Add more project window placement options | Hugo Locurcio | |
It is now possible to use the previous or next monitor (relative to the editor) to display running projects. If either end is reached, it will wrap around to the last or first monitor (respectively). This closes #20283. | |||
2018-08-19 | changed search help selection color | Alexander Holland | |
2018-08-19 | Added possibility to change color of 2d editor grid | Chaosus | |
2018-08-14 | Merge pull request #20997 from Gamblify/add_files_to_tree_view | Rémi Verschelde | |
Add a way to disable the split view in the FileSystem dock | |||
2018-08-14 | Add a way to disable the split view | groud | |
Also add a parameter as the max height before split | |||
2018-08-14 | Merge pull request #20952 from hpvb/fix-17963 | Rémi Verschelde | |
When starting up try creating directories recursively | |||
2018-08-14 | When starting up try creating directories recursively | Hein-Pieter van Braam | |
Previously we had a check to see if cache and data directories exist and another check to try to make them if they do not. However the second check was never reached if we don't have the directories in question. Furthermore for cache directories on Linux people who never started a desktop environment we need to recurisively create the XDG directory as well as the godot specific directory. This fixes #17963 | |||
2018-08-02 | Make the default text editor caret blink speed faster | Hugo Locurcio | |
2018-07-26 | Reduce unnecessary COW on Vector by make writing explicit | Hein-Pieter van Braam | |
This commit makes operator[] on Vector const and adds a write proxy to it. From now on writes to Vectors need to happen through the .write proxy. So for instance: Vector<int> vec; vec.push_back(10); std::cout << vec[0] << std::endl; vec.write[0] = 20; Failing to use the .write proxy will cause a compilation error. In addition COWable datatypes can now embed a CowData pointer to their data. This means that String, CharString, and VMap no longer use or derive from Vector. _ALWAYS_INLINE_ and _FORCE_INLINE_ are now equivalent for debug and non-debug builds. This is a lot faster for Vector in the editor and while running tests. The reason why this difference used to exist is because force-inlined methods used to give a bad debugging experience. After extensive testing with modern compilers this is no longer the case. | |||
2018-07-25 | Merge pull request #20300 from Chaosus/editorsettings_fixes | Rémi Verschelde | |
Few fixes for editor tab in editor settings | |||
2018-07-20 | Add editor highlight for type-safe lines | George Marques | |
The line number is hightlighted to indicate that the line contains only type-safe code. | |||
2018-07-20 | Use type hints to improve completion | George Marques | |
- Allow type hints to be completed. - Use type information to infer completion candidates. - Show typed function signature in tooltip. - Add type hints when completing declaration from virtual functions (optional). | |||
2018-07-20 | Few fixes for editor tab in editor settings | Chaosus | |
2018-07-19 | -Project/Editor settings now use new inspector | Juan Linietsky | |
-Project/Editor settings now show tooltips properly -Settings thar require restart now will show a restart warning -Video driver is now visible all the time, can be changed easily -Added function to request current video driver | |||
2018-06-23 | Changed themes presets to String format | Chaosus | |