Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-07-23 | DisplayServer: separate window showing into another function | Lorenzo Cerqua | |
When creating a window, Godot would first register it to the WM(show it) and then set its flags. This works fine on a floating WM, but on tiling WMs as soon as a window gets registered the WM immediately acts on the window by scaling it up and treating it as a generic window, being registered without any special flags. This commit separates the showing of the window into another function and calls it after the most important flags are set, making windows with special flags(eg. all popups) work again on tiling WMs. Fixes #37930 | |||
2020-07-22 | Merge pull request #40600 from akien-mga/vs-duplicate-branches-warning | Rémi Verschelde | |
VisualScript: Fix -Wduplicate-branches warning | |||
2020-07-22 | Merge pull request #40599 from akien-mga/vulkan-init-structs | Rémi Verschelde | |
Vulkan: Fix struct init for VkClearAttachment | |||
2020-07-22 | VisualScript: Fix -Wduplicate-branches warning | Rémi Verschelde | |
When VSDEBUG is a no-op (default), those branches did the same (nothing). | |||
2020-07-22 | Vulkan: Fix struct init for VkClearAttachment | Rémi Verschelde | |
The changes from #38835 were not sufficient to fix #38829, as VkClearAttachment still had uninitialized member structs in its VkClearColor member struct. The struct rabbit hole goes deep and trying to do validation as done in #38829 doesn't appear realistic. | |||
2020-07-22 | Merge pull request #38835 from madmiraal/fix-38829 | Rémi Verschelde | |
Fix may be used unitialized warnings in _render_pass_create() and _draw_list_insert_clear_region(). | |||
2020-07-22 | Merge pull request #40596 from neikeq/fix-msbuild-restore-not-called | Rémi Verschelde | |
C#: Fix restore not called when building game projects | |||
2020-07-22 | C#: Fix restore not called when building game projects | Ignacio Etcheverry | |
2020-07-22 | Merge pull request #40590 from Calinou/doc-inputeventmousemotion-polling-rate | Rémi Verschelde | |
Document polling rate limitations in InputEventMouseMotion | |||
2020-07-22 | Document polling rate limitations in InputEventMouseMotion | Hugo Locurcio | |
This closes #40579. | |||
2020-07-22 | Merge pull request #40217 from theoway/visible_line_count_fix | Rémi Verschelde | |
Fixes the get_visible_line_count() of rich text label | |||
2020-07-22 | Merge pull request #40588 from nekomatata/virtual-keyboard-disable | Rémi Verschelde | |
Add option to disable virtual keyboard for LineEdit | |||
2020-07-22 | Merge pull request #40583 from aaronfranke/cs-xml-plane | Rémi Verschelde | |
Fix XML in Plane.cs | |||
2020-07-22 | Add option to disable virtual keyboard for LineEdit | PouleyKetchoupp | |
Co-authored-by: Alexander Holland <alexander.holland@live.de> | |||
2020-07-21 | Fix XML in Plane.cs | Aaron Franke | |
2020-07-21 | Merge pull request #40450 from asmaloney/spelling | Rémi Verschelde | |
Fix spelling & grammar in comments, docs, and messages | |||
2020-07-21 | Merge pull request #40398 from thebestnom/android_keyboard_modifiers_and_arrows | Rémi Verschelde | |
Android: Keyboard modifier and arrow key support for text edit | |||
2020-07-21 | Merge pull request #40501 from aaronfranke/core-docs-cs | Rémi Verschelde | |
Update core documentation to match recent C# changes | |||
2020-07-21 | Fix spelling & grammar in comments, docs, and messages | Andy Maloney | |
2020-07-21 | Android: Keyboard modifier and arrow key support | thebestnom | |
2020-07-21 | Merge pull request #32908 from Nehluxhes/node_update_twice | Rémi Verschelde | |
Remove duplicate displayed node update call | |||
2020-07-21 | Merge pull request #40448 from Paulb23/fix_txt_close_crash | Rémi Verschelde | |
Fix crash when closing a TextFile | |||
2020-07-21 | Merge pull request #40457 from Calinou/doc-basebutton-pressed-toggled | Rémi Verschelde | |
Mention `toggled` signal for pressed state in BaseButton documentation | |||
2020-07-21 | Update core documentation to match recent C# changes | Aaron Franke | |
Also a few minor API changes like adding AABB.abs() Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2020-07-21 | Merge pull request #40567 from akien-mga/travis-emscripten-latest | Rémi Verschelde | |
Travis: Back to latest emsdk, use embedded mode properly | |||
2020-07-21 | Remove duplicate node update call | Nehluxhes | |
2020-07-21 | Travis: Back to latest emsdk, use embedded mode properly | Rémi Verschelde | |
Reverts and supersedes #39168 and #40563. | |||
2020-07-21 | Merge pull request #40512 from yrk06/ExposeInertiaTensorMaster | Rémi Verschelde | |
Add Method get_inverse_inertia_tensor | |||
2020-07-21 | Add Method get_inverse_inertia_tensor | Yerik | |
2020-07-21 | Merge pull request #40533 from zaevi/fix_clipboard_crlf | Rémi Verschelde | |
fix crlf for clipboard | |||
2020-07-21 | Merge pull request #40562 from nekomatata/osxcross-vulkan-layer | Rémi Verschelde | |
Fix Vulkan layer creation when compiling with OSXCross | |||
2020-07-21 | Merge pull request #40565 from akien-mga/enetgodot-style | Rémi Verschelde | |
ENetGodot: Apply clang-format and style guide | |||
2020-07-21 | Merge pull request #40548 from nekomatata/osxcross-min-version-10.12 | Rémi Verschelde | |
Set minimum osx version to 10.12 for OSXCross compilation | |||
2020-07-21 | Set minimum osx version to 10.12 for OSXCross compilation | PouleyKetchoupp | |
Fixes this compilation error: In file included from thirdparty/vulkan/vk_mem_alloc.cpp:7: thirdparty/vulkan/vk_mem_alloc.h:3691:18: error: 'shared_mutex' is unavailable: introduced in macOS 10.12 std::shared_mutex m_Mutex; ^ /home/[user]/sources/osxcross/target/bin/../SDK/MacOSX10.14.sdk/usr/include/c++/v1/shared_mutex:178:58: note: 'shared_mutex' has been explicitly marked unavailable here class _LIBCPP_TYPE_VIS _LIBCPP_AVAILABILITY_SHARED_MUTEX shared_mutex | |||
2020-07-21 | Fix MoltenVK layer creation when compiling with OSXCross | PouleyKetchoupp | |
2020-07-21 | Merge pull request #40560 from akien-mga/tileseteditor-polygon-size-crash | Rémi Verschelde | |
TileSet Editor: Check polygon size before indexing | |||
2020-07-21 | ENetGodot: Apply clang-format and style guide | Rémi Verschelde | |
2020-07-21 | TileSet Editor: Check polygon size before indexing | Rémi Verschelde | |
Fixes #39722. | |||
2020-07-21 | Merge pull request #40563 from akien-mga/travis-pin-emscripten-1.39.19 | Rémi Verschelde | |
Travis: Pin Emscripten version to 1.39.19 | |||
2020-07-21 | Travis: Pin Emscripten version to 1.39.19 | Rémi Verschelde | |
1.39.20 dropped support for the no-embedded mode we use since #39168, as our detection logic hasn't been fixed yet to support the embedded mode. | |||
2020-07-20 | Merge pull request #40476 from Calinou/doc-visibilitynotifier | Rémi Verschelde | |
Improve the VisibilityNotifier and VisibilityEnabler class descriptions | |||
2020-07-20 | Merge pull request #40463 from Calinou/doc-editorsettings | Rémi Verschelde | |
Complete the EditorSettings class documentation | |||
2020-07-20 | Merge pull request #40493 from Calinou/doc-editor-plugins-interfaces | Rémi Verschelde | |
Document several editor-related classes to 100% completion | |||
2020-07-20 | Merge pull request #40477 from Calinou/doc-vector-dot | Rémi Verschelde | |
Document `Vector2.dot()` and `Vector3.dot()` more extensively | |||
2020-07-20 | Merge pull request #40422 from amanj120/forward_port_bundle_pr_resources | Rémi Verschelde | |
Create strings.xml files in the Gradle project to handle localization | |||
2020-07-20 | Merge pull request #39801 from ChristopheLY/tween-bool-state | Rémi Verschelde | |
bug with Tween.is_active, fixes #39760 | |||
2020-07-20 | Merge pull request #38763 from fire/38751 | Rémi Verschelde | |
Allow gltf2 morph targets including animations with no default value… | |||
2020-07-20 | bug with Tween.is_active, fixes #39760 | Chistpohe LY | |
2020-07-20 | Merge pull request #40491 from RandomShaper/font_avail_chars | Rémi Verschelde | |
Add DynamicFont::get_available_chars() | |||
2020-07-20 | Add DynamicFont::get_available_chars() | Pedro J. Estébanez | |