Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-07-25 | Remove unnecessary 'pass' statement | luz paz | |
ref: https://lgtm.com/projects/g/godotengine/godot/?mode=tree&ruleFocus=910088 | |||
2021-07-23 | Use C++ iterators for Lists in many situations | Aaron Franke | |
2021-07-22 | Move `alert` function from `DisplayServer` to `OS`. | bruvzg | |
2021-07-16 | Modernize Display server to use override keyword | Hendrik Brucker | |
2021-07-06 | Restructure and reimplement vsync options | Hendrik Brucker | |
-Add a v-sync mode setting which allows to choose between DISABLED, ON, ADAPTIVE and MAILBOX -Removed the V-Sync via Compositor option | |||
2021-07-06 | Merge pull request #39139 from ThakeeNathees/windows-err-to-stderr | Rémi Verschelde | |
Windows error logs directed to stderr | |||
2021-07-04 | Replace backslash with forward slash in OS_Windows path methods | miere43 | |
2021-06-29 | [Windows Export] Use temporary file for osslsigncode signing. | bruvzg | |
2021-06-20 | Use mouse and joypad enums instead of plain integers | Aaron Franke | |
Also MIDIMessage | |||
2021-06-20 | Move many input enums to their own file | Aaron Franke | |
2021-06-19 | Rename `instance()`->`instantiate()` when it's a verb | Lightning_A | |
2021-06-12 | Merge pull request #49123 from aaronfranke/it-is-time | Rémi Verschelde | |
Add a Time singleton | |||
2021-06-11 | Merge pull request #49511 from akien-mga/core-diraccess-fileaccess-io | Rémi Verschelde | |
Core: Move DirAccess and FileAccess to `core/io` | |||
2021-06-11 | Merge pull request #49279 from Calinou/rename-string-is-abs-path-method | Rémi Verschelde | |
Rename `String.is_abs_path()` to `String.is_absolute_path()` | |||
2021-06-11 | Add Time singleton | Aaron Franke | |
2021-06-11 | Core: Move DirAccess and FileAccess to `core/io` | Rémi Verschelde | |
File handling APIs are typically considered part of I/O, and we did have most `FileAccess` implementations in `core/io` already. | |||
2021-06-07 | Style: Cleanup uses of double spaces between words | Rémi Verschelde | |
Or after punctuation. Tried to leave third-party stuff alone, unless it has been heavily modified for Godot. | |||
2021-06-04 | Rename Quat to Quaternion | Marcel Admiraal | |
2021-06-03 | Merge pull request #38430 from aaronfranke/transform3d | Rémi Verschelde | |
2021-06-03 | Add MOUSE_MODE_CONFINED_HIDDEN | Aaron Franke | |
Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro> | |||
2021-06-03 | Rename `String.is_abs_path()` to `String.is_absolute_path()` | Hugo Locurcio | |
This is more consistent with `NodePath.is_absolute()`. | |||
2021-06-03 | Rename Variant TRANSFORM to TRANSFORM3D | Aaron Franke | |
Also _transform to _transform3d | |||
2021-06-02 | Fixed window_can_draw of DisplayServerWindows | Hendrik Brucker | |
2021-05-21 | OS: Remove code duplicate in XDG paths handling | Rémi Verschelde | |
Follow-up to #48542. | |||
2021-05-20 | Only allow absolute paths in XDG environment variables | Hugo Locurcio | |
The XDG Base Directory specification does not allow using relative paths (which broke things in Godot anyway). If a relative path is detected, it should be ignored. | |||
2021-05-07 | Rename "Control" key to "Ctrl" and add "_pressed" suffix to all ↵ | Lightning_A | |
InputEventWithModifiers properties/methods | |||
2021-05-06 | Rename `IP_Unix`, `IP_Address` and `TCP_Server` to remove underscores | Hugo Locurcio | |
2021-05-04 | Rename `doubleclick` to `double_click` | Aaron Franke | |
2021-04-29 | Replace remaining uses of `NULL` with `nullptr` | Rémi Verschelde | |
Follow-up to #38736 (these uses were likely added after this PR was merged). | |||
2021-04-27 | Core: Drop custom `copymem`/`zeromem` defines | Rémi Verschelde | |
We've been using standard C library functions `memcpy`/`memset` for these since 2016 with 67f65f66391327b2967a20a89c3627e1dd6e84eb. There was still the possibility for third-party platform ports to override the definitions with a custom header, but this doesn't seem useful anymore. | |||
2021-03-30 | Fix window resizing after minimization on Windows | floppyhammer | |
2021-03-28 | Rename Texture.get_data() to get_image() | Marcel Admiraal | |
2021-03-23 | Rename some more global enums (Key, Joy, MIDI) | Aaron Franke | |
2021-03-23 | Rename ButtonList enum and members to MouseButton | Aaron Franke | |
2021-03-20 | Merge pull request #46966 from qarmin/faster_release | Rémi Verschelde | |
Allow to not optimize release build | |||
2021-03-14 | Allow to not optimize release build | Rafał Mikrut | |
2021-03-13 | Merge pull request #46941 from goostengine/asan-msvc | Rémi Verschelde | |
Add `use_asan` option for MSVC to enable AddressSanitizer | |||
2021-03-13 | Merge pull request #46900 from Ev1lbl0w/bugfix-malloc_calls | Rémi Verschelde | |
Replace malloc's with Godot's memalloc macro | |||
2021-03-13 | Replace malloc's with Godot's memalloc macro | Ev1lbl0w | |
2021-03-12 | Add `use_asan` option for MSVC to enable AddressSanitizer | Andrii Doroshenko (Xrayez) | |
Exposes AddressSanitizer support in MSVC compiler. Can be installed via individual components in the Visual Studio 2019 Installer. Disabled by default. Compile the engine with `scons use_asan=yes`. | |||
2021-03-12 | Fixes small typos and grammar correction | Anshul7sp1 | |
2021-02-24 | Added LocalVector to Visual Studio debugger visualization | PouleyKetchoupp | |
2021-02-18 | Move tablet driver API from OS to DisplayServer. | bruvzg | |
2021-02-10 | Make Servers truly Thread Safe | reduz | |
-Rendering server now uses a split RID allocate/initialize internally, this allows generating RIDs immediately but initialization to happen later on the proper thread (as rendering APIs generally requiere to call on the right thread). -RenderingServerWrapMT is no more, multithreading is done in RenderingServerDefault. -Some functions like texture or mesh creation, when renderer supports it, can register and return immediately (so no waiting for server API to flush, and saving staging and command buffer memory). -3D physics server changed to be made multithread friendly. -Added PhysicsServer3DWrapMT to use 3D physics server from multiple threads. -Disablet Bullet (too much effort to make multithread friendly, this needs to be fixed eventually). | |||
2021-02-09 | Use /Zi and /FS for including debugger symbols on Windows with MSVC | Bastiaan Olij | |
2021-02-08 | SCons: Fix debug_symbols tests after switch to BoolVariable | Rémi Verschelde | |
Bug introduced in #45679. Fixes part of #45816. | |||
2021-02-07 | Cancel event dispatch on error | kobewi | |
2021-02-03 | SCons: Add `production=yes` option to use production defaults | Rémi Verschelde | |
This is meant for users making custom builds to match the options used on optimized, official builds. This enables, on the platforms which support them: - `use_static_cpp=yes` (portable binaries for Linux and Windows) - `use_lto=yes` (link time optimizations - note: requires a lot of RAM!) - `debug_symbols=no` (no debug symbols, smaller binaries) Also abort when using MSVC with `production=yes`, as: - It cannot optimize the GDScript VM like GCC or Clang do, leading to significant performance drops. - Its LTO support is unreliable, at least used to trigger crashes last we tried it extensively. All options can still be overridden if specified, and the `dev=yes` option was changed to also support overrides. | |||
2021-01-29 | Modernize Thread | Pedro J. Estébanez | |
- Based on C++11's `thread` and `thread_local` - No more need to allocate-deallocate or check for null - No pointer anymore, just a member variable - Platform-specific implementations no longer needed (except for the few cases of non-portable functions) - Simpler for `NO_THREADS` - Thread ids are now the same across platforms (main is 1; others follow) | |||
2021-01-22 | Merge pull request #45314 from RandomShaper/modernize_rwlock | Rémi Verschelde | |
Modernize RWLock |