Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-03-30 | Add more verbosity for property overrides in RST documentation | Yuri Sizov | |
2020-03-30 | Merge pull request #37412 from KoBeWi/great_tree_escape | Rémi Verschelde | |
Properly handle node remove via undo | |||
2020-03-29 | Properly handle node remove via undo | Tomasz Chabora | |
2020-03-28 | Merge pull request #37313 from Chaosus/shader_fix_for | Yuri Roubinsky | |
Prevent shader crash if multiple variables has been declared in 'for' | |||
2020-03-28 | Merge pull request #37369 from Calinou/scons-x11-alias-linuxbsd | Rémi Verschelde | |
Alias `platform=x11` to `platform=linuxbsd` in SCons | |||
2020-03-28 | Alias `platform=x11` to `platform=linuxbsd` in SCons | Hugo Locurcio | |
This makes it possible for users to follow outdated documentation and still get a working binary. This closes #37367. | |||
2020-03-28 | Prevent shader crash if multiple variables has been declared in 'for' | Yuri Roubinsky | |
2020-03-28 | Merge pull request #37364 from ThakeeNathees/fix-forloop-range-bug-#37358 | Rémi Verschelde | |
Fix for loop range bug: #37358 | |||
2020-03-28 | Merge pull request #37373 from reduz/fix-vector-resize | Rémi Verschelde | |
Ensure COWData does not always reallocate on resize, fixes #22561 | |||
2020-03-28 | Merge pull request #37362 from reduz/audioserver-memory-cleanup | Rémi Verschelde | |
Remove the audio memory allocator, use regular one instead. | |||
2020-03-28 | Merge pull request #37379 from akien-mga/server-renames-followup | Rémi Verschelde | |
More server renames for consistency after #37361 | |||
2020-03-28 | Fix copyright headers for recently added files | Rémi Verschelde | |
2020-03-28 | More server renames for consistency after #37361 | Rémi Verschelde | |
2020-03-28 | Merge pull request #37372 from dankan1890/quick_fix | Rémi Verschelde | |
Fixed probable typo in renaming. | |||
2020-03-28 | Fixed missed occurrences in #37361 renamings. | dankan1890 | |
2020-03-27 | Ensure COWData does not reallocate on push back, fixes #22561 | Juan Linietsky | |
2020-03-27 | Remove the audio memory allocator, use regular one instead. | Juan Linietsky | |
2020-03-27 | Merge pull request #37361 from reduz/server-renames | Rémi Verschelde | |
Renaming of servers for coherency. | |||
2020-03-28 | Fix for loop range bug: #37358 | Thakee Nathees | |
2020-03-27 | Renaming of servers for coherency. | Juan Linietsky | |
VisualServer -> RenderingServer PhysicsServer -> PhysicsServer3D Physics2DServer -> PhysicsServer2D NavigationServer -> NavigationServer3D Navigation2DServer -> NavigationServer2D Also renamed corresponding files. | |||
2020-03-27 | Merge pull request #37340 from reduz/rename-3d-nodes | Juan Linietsky | |
Make 2D and 3D node names more explicit | |||
2020-03-27 | Rename more 2D and 3D nodes to follow convention | Rémi Verschelde | |
Rename editor plugins to match the new node names. | |||
2020-03-27 | Merge pull request #37347 from akien-mga/displayserver-fix-create-func | Rémi Verschelde | |
DisplayServer: Fix registration of GetRenderingDriversFunction | |||
2020-03-27 | Merge pull request #37353 from bruvzg/fix_editor_font | Rémi Verschelde | |
Fix default editor font. | |||
2020-03-27 | Fix build with disable_3d=yes, remove dependency on WorldEnvironment | Rémi Verschelde | |
2020-03-27 | Renamed 2D and 3D nodes to make their types explicit | Juan Linietsky | |
Fixes #30736. | |||
2020-03-27 | Merge pull request #37351 from akien-mga/fix-warnings-Wmaybe-initialized | Rémi Verschelde | |
Fix some -Wmaybe-uninitialized warnings | |||
2020-03-27 | Fix some -Wmaybe-uninitialized warnings | Rémi Verschelde | |
Namely: ``` modules/basis_universal/register_types.cpp: In function 'Ref<Image> basis_universal_unpacker(const Vector<unsigned char>&)': modules/basis_universal/register_types.cpp:266:15: warning: 'imgfmt' may be used uninitialized in this function [-Wmaybe-uninitialized] 266 | image->create(info.m_width, info.m_height, info.m_total_levels > 1, imgfmt, gpudata); | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ modules/basis_universal/register_types.cpp:255:39: warning: 'format' may be used uninitialized in this function [-Wmaybe-uninitialized] 255 | bool ret = tr.transcode_image_level(ptr, size, 0, i, dst + ofs, level.m_total_blocks - i, format); | ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ``` ``` servers/visual_server.cpp: In member function 'Error VisualServer::_surface_set_data(Array, uint32_t, uint32_t*, uint32_t, Vector<unsigned char>&, int, Vector<unsigned char>&, int, AABB&, Vector<AABB>&)': servers/visual_server.cpp:636:15: warning: 'iw' may be used uninitialized in this function [-Wmaybe-uninitialized] 636 | copymem(&iw[i * 2], &v, 2); | ^ ``` ``` core/image.cpp: In member function 'Error Image::generate_mipmap_roughness(Image::RoughnessChannel, const Ref<Image>&)': core/image.cpp:1683:11: warning: 'roughness' may be used uninitialized in this function [-Wmaybe-uninitialized] 1683 | float roughness; | ^~~~~~~~~ ``` | |||
2020-03-27 | Merge pull request #37354 from marxin/fix-maybe-uninitialized-warnings | Rémi Verschelde | |
Fix various -Wmaybe-uninitialized (#37352). | |||
2020-03-27 | Fix various -Wmaybe-uninitialized (#37352). | Martin Liska | |
2020-03-27 | Fix default editor font. | bruvzg | |
Fix popup_centered_clamped definition typo. | |||
2020-03-27 | DisplayServer: Fix registration of GetRenderingDriversFunction | Rémi Verschelde | |
Also improve `--help` output. | |||
2020-03-27 | Merge pull request #37339 from bruvzg/mac_disp_server_fixes | Rémi Verschelde | |
[macOS] Prevent recursive `_dispatch_input_event` calls, improve window focus regain. | |||
2020-03-26 | Prevent recursive `_dispatch_input_event` calls, improve focus regain on ↵ | bruvzg | |
window deletion. | |||
2020-03-26 | Merge pull request #37317 from akien-mga/display-server-rebased | Rémi Verschelde | |
Separate DisplayServer from OS and add multiple windows support | |||
2020-03-26 | Travis: Disable HTML5 again until ported to DisplayServer | Rémi Verschelde | |
Also re-enable macOS builds disabled in dbb3f992a4f4a145c46df69e0e900262b956f0e3. | |||
2020-03-26 | Add macOS DisplayServer implementation. | bruvzg | |
Change global menu to use Callable, add support for check items and submenus. | |||
2020-03-26 | Fixes to X11, still pretty broken | Juan Linietsky | |
2020-03-26 | Multiple changes to DisplayServerX11 | Mateo Kuruk Miccino | |
- Travis: Change x11 to linuxbsd - SCons: Change x11 plataform to linuxbsd - Plugins: Remove ; to avoid fallthrough warning - DisplayServerX11: Implement set_icon - DisplayServerX11: Fix X11 bug when a window was erased from windows map, all the changes from that erased windows are sending to the main window - DisplayServerX11: Reorder create_window commands - DisplayServerX11: Change every Size2 to Size2i and Rect2 to Rect2i where it belongs + More X11 fixes which have been integrated directly back into reduz's original commits while rebasing the branch. | |||
2020-03-26 | Implemented drag and drop across windows, both OS and embedded. | Juan Linietsky | |
2020-03-26 | Reworked tooltips to use the popup system. | Juan Linietsky | |
2020-03-26 | Popups have also been converted to windows | Juan Linietsky | |
Controls using the old modal API have been replaced to use popups. | |||
2020-03-26 | Fixes to window style flags | Juan Linietsky | |
2020-03-26 | Open sub-windows as embedded if the OS does not support them | Juan Linietsky | |
2020-03-26 | Popups are now windows also (broken!) | Juan Linietsky | |
2020-03-26 | Separate DisplayServer from OS on Windows | Juan Linietsky | |
2020-03-26 | Make DisplayServerX11 thread safe | Juan Linietsky | |
2020-03-26 | Working multiple window support, including editor | Juan Linietsky | |
2020-03-26 | Support for transient windows | Juan Linietsky | |
2020-03-26 | Refactored input, goes all via windows now. | Juan Linietsky | |
Also renamed Input to InputFilter because all it does is filter events. |