Age | Commit message (Collapse) | Author |
|
HTML5: Address removal of 'timestamp' in Emscripten 1.39.5
|
|
It was removed as noted in the changelog:
https://github.com/emscripten-core/emscripten/blob/1.39.5/ChangeLog.md#v1395-12202019
> Removed `timestamp` field from mouse, wheel, devicemotion and
> deviceorientation events. The presence of a `timestamp` on these
> events was slightly arbitrary, and populating this field caused
> a small profileable overhead that all users might not care about.
> It is easy to get a timestamp of an event by calling
> `emscripten_get_now()` or `emscripten_performance_now()` inside
> the event handler function of any event.
Fixes #34648.
|
|
lakshay-angrish/35090-methods-in-xml-not-in-editor
show parametric setters and getters in editor help
|
|
|
|
Improves LineEdit documentation
|
|
ChibiDenDen/constant_lookup_through_subclass_instance
Fix constant access in base class through subclass instance
|
|
* Recently supported macOS shortcuts are added
* Makes it clear than `set_text` won't trigger `text_changed`
* `minimum_spaces` is the number of space characters that can be shown
without scrolling
|
|
|
|
|
|
'I guess there is no one to (git) blame
We're leaving ground...
Will things ever be the same again?'
|
|
New contributor added to AUTHORS:
@dankan1890
Thanks to all contributors and donors for making Godot possible!
|
|
Fixes as issue where a subclass calls a base class method that tries to access a constant from the script.
The original code went through every ower class, and for each owner, went through its inheritance tree.
This seems like the wrong order, the modified code goes to each base class, and for each base class goes through the owner tree.
This is more in line with what the parser does, as the current impelemtation allows an access that the parser does not support.
This change should not negatively affect existing code due to the way the parser works
|
|
ENet optional server_relay when disconnecting peer
|
|
Fix issue regarding rotating Canvas Items in editor
|
|
Add multimesh format max for proper error checking
|
|
refresh area2d collision when shape changes
|
|
Fix errors raised when showing parse errors in the editor
|
|
|
|
Fix SkeletonIK not playing animation if more than one IK-Bone is active
|
|
Gracefully handle 3D textures in GLES2
|
|
Mono/C#: Script interface calls now attach the current thread
|
|
Update libwebp to 1.1.0
|
|
Fixes #26691
|
|
|
|
|
|
|
|
Fix error exporting to X11 with embedded PCK
|
|
Fixes #32513.
|
|
Added guards to all C# script interface calls to attach the current thread
for the current scope if the thread is not already attached.
This is far from ideal, as attaching the thread is not cheap and all managed
thread local storage is lost when we detach the thread at the end of the calls.
However, it's the best we can do for now to avoid crashing
when an unattached thread tries to interact with C# code.
|
|
Validate instances of objects before trying to check their type in GDScript
|
|
Fix function arguments hint format in GDScript editor
|
|
Adds null check before using image loader
|
|
#34161: Keep a weak reference to orphan subclasses to reuse on class reload
|
|
Fixes #27582
|
|
Fix slight problems related to default values of exported typed arrays
|
|
|
|
Fixed unknown ASCII symbols rendered instead of tabs in bookmarks list
|
|
Refactor (and fix) how the connect button is disabled.
|
|
Tab characters were not rendered properly in the breakpoints and
bookmarks lists of the script editor if the bookmarked line was a
comment, resulting in unknown ASCII symbols “�”.
Fixes #34046.
Also changed formatting a bit to enclose the code in backticks (like in
Markdown) instead of quotes.
Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
|
|
|
|
for consistency with the format of the documentation:
"type func_name(arg1: type, arg2: type)"
|
|
Travis: Disable -Wstrict-aliasing warning on GCC 5 test build
|
|
Disabled array initialization, const array and arr.length in GLES2 shaders
|
|
Should speed up builds by avoiding warning spam.
This warning is no longer raised by newer GCC versions.
|
|
It should not be possible to click the "Connect" button unless
- a node is selected, and
- that node is valid in the current mode.
The modes are the default and advanced modes which allow connecting to scripts
and nodes respectively.
|
|
Prevent crash described in #34555.
|
|
MinGW: Avoid GCC -Wcast-function-type warnings on GetProcAddress
|
|
Using the same method as GNUlib and various other projects.
https://lists.gnu.org/archive/html/bug-gnulib/2018-08/msg00109.html
The warning is valid, but there's no way around it since the issue
comes from the Windows SDK. It's also harmless in this case.
Part of #29801.
|
|
akien-mga/im-in-love-with-the-shape-of-ueicbksjdhd
Validate input in (CPU)Particles set_emission_shape()
|
|
Fixes #29777.
Co-authored-by: Cameron Reikes <cameronreikes@gmail.com>
|