Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-02-25 | Rename `scancode` to `keycode`. | bruvzg | |
Add `physical_keycode` (keyboard layout independent keycodes) to InputEventKey and InputMap. Fix non-latin keyboard layout keycodes on Linux/X11 (fallback to physical keycodes). | |||
2020-02-18 | PoolVector is gone, replaced by Vector | Juan Linietsky | |
Typed `PoolTypeArray` types are now renamed `PackedTypeArray` and are sugar for `Vector<Type>`. | |||
2020-02-14 | Remove incomplete battery status/power API | Rémi Verschelde | |
It was initially implemented in #5871 for Godot 3.0, but never really completed or thoroughly tested for most platforms. It then stayed in limbo and nobody seems really keen to finish it, so it's better to remove it in 4.0, and re-add eventually (possibly with a different API) if there's demand and an implementation confirmed working on all platforms. Closes #8770. | |||
2020-02-12 | Force vulkan driver until OpenGL is implemented | Juan Linietsky | |
2020-02-11 | More GIProbe work and fixes | Juan Linietsky | |
2020-02-11 | Add runtime GLES2 / Vulkan context selection. | bruvzg | |
2020-02-11 | Custom material support seems complete. | Juan Linietsky | |
2020-02-11 | basic 2D engine is more or less working with Vulkan, including editor. | Juan Linietsky | |
Still a lot to do | |||
2020-02-11 | A lot of progress with canvas rendering, still far from working. | Juan Linietsky | |
2020-02-11 | Texture refactor | Juan Linietsky | |
-Texture renamed to Texture2D -TextureLayered as base now inherits 2Darray, cubemap and cubemap array -Removed all references to flags in textures (they will go in the shader) -Texture3D gone for now (will come back later done properly) -Create base rasterizer for RenderDevice, RasterizerRD | |||
2020-02-11 | Modify RenderingDevice to use RIDs, now that they are O(1) | Juan Linietsky | |
2020-02-11 | Added support for push constants | Juan Linietsky | |
2020-02-11 | Initial work on Vulkan: | Juan Linietsky | |
-Added VulkanContext -Added an X11 implementation -Added a rendering device abstraction -added a Vulkan rendering device abstraction -Engine does not work, only shows Godot logo (run it from bin/) | |||
2020-02-10 | Merge pull request #35802 from bruvzg/linux_tablet_ranges | Rémi Verschelde | |
Fix pressure / tilt ranges on Linux. | |||
2020-02-10 | adjusted linux cursors, added fallbacks | MennoMax | |
2020-02-05 | Remove duplicate ERR_PRINT macro. | Marcel Admiraal | |
2020-02-03 | Restores correct window position after fullscreen toggling off on Linux | Yuri Roubinsky | |
2020-02-03 | Fix restoring window from fullscreen to normal on Linux | Yuri Roubinsky | |
2020-01-31 | Fix pressure / tilt ranges on Linux. | bruvzg | |
2020-01-22 | Remove buggy check if key was already released for accumulated input | Eric Rybicki | |
Fixes #27104 | |||
2020-01-06 | Merge pull request #33967 from Calinou/add-os-is-window-focused | Rémi Verschelde | |
Add an `OS.is_window_focused()` getter | |||
2020-01-01 | Update copyright statements to 2020 | Rémi Verschelde | |
Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it. | |||
2019-12-01 | iOS modular build and export implementation. | bruvzg | |
2019-11-28 | Add an `OS.is_window_focused()` getter | Hugo Locurcio | |
This makes it possible to know whether the window is focused at a given time, without having to track the focus state manually using `NOTIFICATION_WM_FOCUS_IN` and `NOTIFICATION_WM_FOCUS_OUT`. This partially addresses #33928. | |||
2019-11-12 | X11: Fix memory leak in handle_key_event | Rémi Verschelde | |
Extracted from #27189. | |||
2019-10-30 | [macOS, Windows, X11] Add graphic tablet pen pressure and tilt support to ↵ | bruvzg | |
InputEventMouseMotion event. | |||
2019-10-12 | Fix X11 modifier keys. | bruvzg | |
2019-10-03 | Properly revert cursor when using set_custom_mouse_cursor with null | PouleyKetchoupp | |
Fixes #32486 | |||
2019-09-22 | Changed some code found by Clang Tidy and Coverity | qarmin | |
2019-09-11 | [X11] set PID as window attribute | thomas.herzog | |
This allows other programs to find out the PID of a Godot instance just by the X11 window ID. | |||
2019-08-28 | Fix modifier keys causing key-code mismatch on Linux/X11. | bruvzg | |
2019-08-10 | OS_X11::set_window_maximized gives up after 0.5s | Carl Drougge | |
Spinning forever is clearly worse, especially since this happens on at least FVWM even though the window actually is maximized. | |||
2019-07-30 | Turn `OS.set_min/max_window_size()` warnings into errors | Hugo Locurcio | |
Since invalid values will cause the setting to be discarded, it makes more sense to display an error message instead of a warning message. | |||
2019-07-24 | Fix crash caused by a9a0d0fb15cc5e028dbf8dab8b46d3dc197c4678 | Guilherme Felipe | |
2019-07-09 | Fix cursor blinking in integrated GPUs | Guilherme Felipe | |
Optimization for Input::set_custom_mouse_cursor when used inside _process function. (Avoids cursor blinking in low end devices) | |||
2019-07-01 | Merge pull request #29815 from NilsIrl/plus_file_1 | Rémi Verschelde | |
Replace ` + "/" + ` with `String::file_add()` | |||
2019-06-26 | Some code changed with Clang-Tidy | qarmin | |
2019-06-23 | Replace ` + "/" + ` with `String::file_add()` | Nils ANDRÉ-CHANG | |
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 | Adding a new Camera Server implementation to Godot. | BastiaanOlij | |
This is a new singleton where camera sources such as webcams or cameras on a mobile phone can register themselves with the Server. Other parts of Godot can interact with this to obtain images from the camera as textures. This work includes additions to the Visual Server to use this functionality to present the camera image in the background. This is specifically targetted at AR applications. | |||
2019-06-15 | Add ability to limit maximum/minimum window size. | bruvzg | |
2019-06-12 | Merge pull request #29465 from bruvzg/per_pixel_transp_impr | Rémi Verschelde | |
Removes redundant "splash" setting, improves per pixel transparency documentation. | |||
2019-06-11 | [X11] Add window borderless state detection, fix borderless state ↵ | bruvzg | |
restoration after exiting fullscreen. | |||
2019-06-04 | Removes redundant "display/window/per_pixel_transparency/splash" setting, ↵ | bruvzg | |
improves per pixel transparency documentation. | |||
2019-05-31 | Fix and expose String::strip_escapes(), use it in LineEdit paste | Rémi Verschelde | |
Supersedes #27736. | |||
2019-05-23 | Fixed uninitialised variable in x11 null cursor creation | Ibrahn Sahir | |
Fully initialised color var. Clarified intent a little with comments/layout. | |||
2019-05-21 | added a const keyword for a methods that return constant literal... | hbina085 | |
2019-05-09 | X11: Check if "_NET_FRAME_EXTENTS" atom is supported. | bruvzg | |
2019-05-01 | Fixed game crash, regression of #26977 | Andrea Catania | |
Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com> | |||
2019-05-01 | Merge pull request #27676 from qarmin/small_fixes_2 | Rémi Verschelde | |
Small fixes to static analyzer bugs |