Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-21 | Merge pull request #24448 from lukad/toggle-system-console | Rémi Verschelde | |
Add option to toggle console window | |||
2019-06-20 | Merge pull request #29283 from qarmin/fix_some_always_same_values | Rémi Verschelde | |
Remove always true/false values | |||
2019-06-20 | Fix always true/false values | qarmin | |
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-19 | Made use of semicolons more consitent, fixed formatting | JohnJLight | |
2019-06-17 | Merge pull request #29752 from bruvzg/window_size_limits | Rémi Verschelde | |
Add ability to limit maximum/minimum window size. | |||
2019-06-15 | Add ability to limit maximum/minimum window size. | bruvzg | |
2019-06-13 | Added constants for the main buttons and axis used in VR | Bastiaan Olij | |
2019-06-04 | Removes redundant "display/window/per_pixel_transparency/splash" setting, ↵ | bruvzg | |
improves per pixel transparency documentation. | |||
2019-06-02 | Add configurable strength value to InputEventAction | Gilles Roudiere | |
2019-05-24 | Add native window/taskbar icon support for Windows and macOS. | bruvzg | |
Co-authored-by: Markus Törnqvist <mjt@nysv.org> | |||
2019-05-21 | added a const keyword for a methods that return constant literal... | hbina085 | |
2019-05-15 | Fix NaN with get_action_strength | Gilles Roudière | |
2019-04-30 | Merge pull request #24437 from mateusfccp/single_quotes_option | Rémi Verschelde | |
Add settings for single-quotes on completion | |||
2019-04-07 | Add FileAccess::set_unix_permissions for Unix platforms | Juan Linietsky | |
2019-04-15 | Add Input::get_current_cursor_shape | Guilherme Felipe | |
[Clean up] Removed unused/unnecessary methods. | |||
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-04 | Clean up notifications and merge Node and MainLoop ones for clarity, closes ↵ | Juan Linietsky | |
#27614 | |||
2019-03-18 | Fix MIDI Note Off missing on some devices | Marcelo Fernandez | |
2019-03-09 | Fix fake null-motion mouse event flood | Pedro J. Estébanez | |
This commit also improves a bit the code quality by making the intent of fake events (and themselves) more explicit. Fixes #26460. | |||
2019-03-08 | Request Android record permission when needed | DESKTOP-3H3MR3A\eloisa | |
2019-03-04 | More style cleanup... | Rémi Verschelde | |
2019-03-03 | Add support for event accumlation (off by default, on for editor), fixes #26536 | Juan Linietsky | |
2019-03-03 | Merge pull request #26547 from vnen/gdscript-dependency-parse | Juan Linietsky | |
Add a parse mode for GDScript which doesn't load dependencies | |||
2019-03-03 | Ability to keep pumping messages while being debugged, may be a solution for ↵ | Juan Linietsky | |
#21431 | |||
2019-03-03 | Add function to get String from FileAccess | George Marques | |
2019-02-27 | Fix -Wsuggest-attribute=format warnings. | marxin | |
2019-02-26 | -Remove harcoded opengl extension testing from OS, ask rasterizer instead. | Juan Linietsky | |
-Fixed a bug where etc textures were imported broken | |||
2019-02-16 | Make Button shortcuts triggerable by gamepads | Hugo Locurcio | |
This closes #25741. | |||
2019-02-12 | Core: Ensure classes match their header filename | Rémi Verschelde | |
Also drop some unused files. Renamed: - `core/dvector.h` -> `pool_vector.h` - `core/io/resource_import.h` -> `resource_importer.h` - `core/sort.h` -> `sort_array.h` - `core/string_db.h` -> `string_name.h` Dropped: - `core/allocators.h` - `core/os/shell.h` - `core/variant_construct_string.cpp` | |||
2019-02-09 | Warn when using GPU particles with GLES2 | Rémi Verschelde | |
Closes #25733. | |||
2019-02-03 | Merge pull request #25478 from neikeq/rr | Ignacio Etcheverry | |
Mono: Fix MonoPosixHelper not being found | |||
2019-02-03 | Added set_environment to OS class | Ignacio Etcheverry | |
2019-01-30 | Let memory stat functions return uint64_t | Pedro J. Estébanez | |
2019-01-26 | Fix code style issues | Rémi Verschelde | |
2019-01-21 | Add function to obtain filesystem type from DirAccess. | Juan Linietsky | |
Change EditorFileSystem to not use directory modification times on FAT32, fixes #20946 | |||
2019-01-03 | Optimizations for trivial types | Hein-Pieter van Braam | |
Relying on various compiler primitives we can reduce the work done in our memory allocators and CowData. For types with trivial ctors or dtors we can skip looping over all elements when creating, resizing, and destroying lists of objects. These primitives are supported by clang, msvc, and GCC. However, once we've moved to C++11 we can rely on several std:: primitives that do the same thing and are standardized. In my testing the extra conditionals introduced here get removed from the generated program entirely as the results for these primitives is known at compile time. | |||
2019-01-01 | Update copyright statements to 2019 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! | |||
2018-12-20 | Added OS.get_system_time_msecs() | volzhs | |
2018-12-18 | Add settings for single-quotes on completion | Mateus Felipe C. C. Pinto | |
2018-12-16 | Removed error message arriving whenever csv file changed | Chaosus | |
2018-12-12 | Merge pull request #24241 from Rubonnek/move-to-initializer-list | Rémi Verschelde | |
Moved member variables to initializer list | |||
2018-12-11 | Moved member variables to initializer list | Wilson E. Alvarez | |
2018-12-11 | Merge pull request #23923 from bruvzg/ime_gdscript | Rémi Verschelde | |
Changes IME to make it possible to use it from gdscript/gdnative | |||
2018-12-07 | Merge pull request #22630 from dualtagh/22478 | Rémi Verschelde | |
22478: Can't duplicate folder with another folder inside | |||
2018-12-07 | Merge pull request #22733 from guilhermefelipecgs/fix_wm_class | Rémi Verschelde | |
[x11] Use "application/config/name" for WM_CLASS | |||
2018-11-23 | Changes IME input to use notification instead of callback, exposes IME ↵ | bruvzg | |
methods to gdscript/gdnative. | |||
2018-11-22 | FileAccess::store_csv_line() don't added unnecessary double quotes. | allkhor | |
2018-11-17 | Fixed the default value for Input.action_press() from commit 8c45282 | Davide Baldo | |
2018-11-16 | Add store_csv_line method for File | Kanabenki | |