Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-17 | Add animation_finished signal and fix frame_changed signal for AnimatedSprite3D | Jitesh | |
Fixes #40301. Fixes #45947. | |||
2021-02-17 | Merge pull request #46117 from akien-mga/dynamic-load-libudev | Rémi Verschelde | |
Dynamically load libudev.so.1 on Linux | |||
2021-02-17 | Merge pull request #46119 from Faless/js/4.x_processor_count | Rémi Verschelde | |
[HTML5] Implement OS.get_processor_count(), 4.0 fixes | |||
2021-02-17 | Merge pull request #45955 from angad-k/fix-set-joint-i-to-name | Rémi Verschelde | |
fix set_joint_i_to_name to use the provided argument | |||
2021-02-17 | Dynamically load libudev.so.1 on Linux if `udev=yes` | Rémi Verschelde | |
This makes it possibly to run Linux binaries compiled with udev support on Linux systems which do not provide udev (typically systemd-less distros). If udev is missing, we fall back to parsing `/dev/input` like when compiled without udev support (`udev=no`). Also adding some verbose debug statements to know which method we're using when debugging Linux joypad issues. The libudev so wrappers were generated on Mageia 8 with libudev 246.9 using https://github.com/hpvb/dynload-wrapper: ``` ./generate-wrapper.py --include /usr/include/libudev.h --sys-include '<libudev.h>' \ --soname libudev.so.1 --init-name libudev --omit-prefix gnu_ \ --output-header libudev-so_wrap.h --output-implementation libudev-so_wrap.c ``` | |||
2021-02-17 | Merge pull request #46050 from akien-mga/ci-simplify-file_format | Rémi Verschelde | |
CI: Remove file_format.sh changes hard to reproduce on Windows | |||
2021-02-17 | glTF: Fix set_joint_i_to_name not using its argument | Angad Kambli | |
Fixes #45371. | |||
2021-02-17 | [HTML5] Implement get_processor_count. | Fabio Alessandrelli | |
2021-02-17 | [HTML5] Fix compilation issues in 4.0 | Fabio Alessandrelli | |
More memory is needed, and a Workaround to avoid undefined symbol due to dead code elimination. | |||
2021-02-17 | RasterizerDummy now instances Image(s). | Fabio Alessandrelli | |
Avoid crash on start-up, we will need to slowly re-implement the various methods with dummy objects so exporting works again like in 3.2 | |||
2021-02-17 | Merge pull request #46087 from Quadtree/add_cwrap_to_runtime_methods | Fabio Alessandrelli | |
Add cwrap to EXTRA_EXPORTED_RUNTIME_METHODS | |||
2021-02-17 | Fix math error in blend shape application tolerance | Kayomn | |
2021-02-17 | Merge pull request #46105 from Calinou/assetlib-retry-button-only-failure | Rémi Verschelde | |
Only display the assetlib Retry button if the download failed | |||
2021-02-17 | Merge pull request #45575 from aaronfranke/look-up | Rémi Verschelde | |
Use Vector3.UP as a default value for look_at's up vector | |||
2021-02-17 | Only display the assetlib Retry button if the download failed | Hugo Locurcio | |
2021-02-16 | Use Vector3.UP as a default value for look_at's up vector | Aaron Franke | |
2021-02-16 | Merge pull request #46095 from hpvb/dynamic-load-pulse | Rémi Verschelde | |
Dynamically load libpulse.so.0 and libasound.so.1 on Linux | |||
2021-02-16 | Dynamically load libpulse.so.0 and libasound.so.1 on Linux | Hein-Pieter van Braam-Stewart | |
By generating stubs using https://github.com/hpvb/dynload-wrapper we can dynamically load libpulse and libasound on systems where it is available. Both are still a build-time requirement but no longer a run-time dependency. For maintenance purposes the wrappers should not need to be re-generated unless we want to bump pulse or asound to an incompatible version. It is unlikely we will want to do this any time soon. This closes #20978 | |||
2021-02-16 | Merge pull request #46097 from AndyBarcia/FixCrash | Rémi Verschelde | |
Fixes crash when using VisualShader::set_mode with invalid mode | |||
2021-02-16 | Fixes crash when calling VisualShader::set_mode | andybarcia | |
2021-02-16 | i18n: Sync translations with Weblate | Rémi Verschelde | |
(cherry picked from commit 7d921c1d53c116b632cefc65aa73eba301e951ec) | |||
2021-02-16 | Merge pull request #46082 from YeldhamDev/styleboxline_margin_fix | Rémi Verschelde | |
Fix StyleBoxLine's incorrect style margin values | |||
2021-02-16 | Merge pull request #46081 from YeldhamDev/popupmenu_fixes | Rémi Verschelde | |
Fix various small issues with PopupMenu | |||
2021-02-16 | Merge pull request #46072 from ↵ | Rémi Verschelde | |
Calinou/add-gpu-particle-attractor-collision-icons Add icons for the new GPU particle attractor and collision nodes | |||
2021-02-16 | Merge pull request #46040 from ellenhp/fix_seek_playback_pos | Rémi Verschelde | |
Return setseek position if one exists in get_playback_position. | |||
2021-02-16 | Merge pull request #45807 from JestemStefan/signed_angles | Rémi Verschelde | |
Add signed_angle_to() and related methods to Vector3 and Vector3i | |||
2021-02-16 | Merge pull request #46089 from akien-mga/test-codeowners | Rémi Verschelde | |
CODEOWNERS: Add some more owned files and fix team names | |||
2021-02-16 | CODEOWNERS: Add some more owned files and fix team names | Rémi Verschelde | |
2021-02-16 | Merge pull request #46088 from groud/fix_line_edit | Rémi Verschelde | |
Fix minimum_character_width in LineEdit | |||
2021-02-16 | Added signed_angle_to for Vector3 | JestemStefan | |
2021-02-16 | Merge pull request #46075 from m4gr3d/expose_godot_plugin_utility_methods_master | Rémi Verschelde | |
Expose GodotPlugin's utility methods | |||
2021-02-16 | Merge pull request #45899 from nekomatata/richtextlabel-get-selection | Rémi Verschelde | |
Expose RichTextLabel selection to script | |||
2021-02-16 | Fix minimum_character_width in LineEdit | Gilles Roudière | |
2021-02-16 | Merge pull request #46083 from ellenhp/mono_ogg_fix | Rémi Verschelde | |
Fix mono->stereo conversion for oggs | |||
2021-02-16 | Add cwrap to EXTRA_EXPORTED_RUNTIME_METHODS | Quadtree | |
2021-02-16 | Merge pull request #46079 from KoBeWi/the_selection | Rémi Verschelde | |
Select TreeItem if none is selected | |||
2021-02-16 | Merge pull request #46039 from ellenhp/fix-empty-mp3-crash | Rémi Verschelde | |
Warn and return when attempting to load invalid MP3s | |||
2021-02-15 | Fix mono->stereo conversion for oggs (see #40630) | Ellen Poe | |
2021-02-16 | Fix StyleBoxLine's incorrect style margin values | Michael Alexsander | |
2021-02-16 | Fix various small issues with PopupMenu | Michael Alexsander | |
2021-02-16 | Select TreeItem if none is selected | kobewi | |
2021-02-15 | Expose RichTextLabel selection to script | PouleyKetchoupp | |
Expose existing get_selection_text and add methods to get the current selection index from and index to. | |||
2021-02-15 | Expose GodotPlugin's utility methods used for registration and signal emitting. | Fredia Huya-Kouadio | |
This enables creation and use of a plugin like class by composition rather than inheritance. | |||
2021-02-15 | Merge pull request #46069 from bruvzg/fix_font_crash_empty_data | Rémi Verschelde | |
Fix font `draw_*string` crash with empty data. | |||
2021-02-15 | Merge pull request #46071 from bruvzg/fix_text_line_para_crash_with_invalid_font | Rémi Verschelde | |
Fix `TextLine`/`TextParagraph` crash when `add_string` / `set_dropcap` is called null font reference. | |||
2021-02-15 | Add icons for the new GPU particle attractor and collision nodes | Hugo Locurcio | |
2021-02-15 | Fix `TextLine`/`TextParagraph` crash when `add_string` / `set_dropcap` is ↵ | bruvzg | |
called null font reference. | |||
2021-02-15 | Fix font `draw_*string` crash with empty data. | bruvzg | |
2021-02-15 | Fail mp3 loading when attempting to load invalid mp3s | Ellen Poe | |
This also adds a warning for unspecified MP3 loading error codes | |||
2021-02-15 | Merge pull request #46048 from akien-mga/codeowners-teams | Rémi Verschelde | |
CODEOWNERS: Update with newly added teams |