Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-24 | Merge pull request #46045 from bruvzg/text_server_bmp_create | Rémi Verschelde | |
[TextServer] Restores bitmap font dynamic construction functions. | |||
2021-02-24 | Merge pull request #46195 from AndyBarcia/FixLanguageCodesIncosistencies | Rémi Verschelde | |
Fix some inconsistent ISO-639 language codes | |||
2021-02-24 | Merge pull request #46342 from YeldhamDev/sun_preview_enhancements | Rémi Verschelde | |
Apply minor visual enhancements to the Sun/Env Preview | |||
2021-02-24 | Merge pull request #46133 from aaronfranke/gray | Rémi Verschelde | |
Change fallback icon for abstract nodes to have a grayed out color | |||
2021-02-24 | Merge pull request #46366 from akien-mga/scons-fix-cmdline-bool | Rémi Verschelde | |
SCons: Properly handle overriding default values to bool options | |||
2021-02-24 | Merge pull request #46341 from angad-k/PathFollow3D-unit-test | Rémi Verschelde | |
add PathFollow3D unit test | |||
2021-02-24 | Merge pull request #46364 from aaronfranke/area-body-signal | Rémi Verschelde | |
Use a more specific type for Area2D/3D body signals | |||
2021-02-24 | SCons: Properly handle overriding default values to bool options | Rémi Verschelde | |
The `dev=yes` and `production=yes` options work as aliases to set a number of options, while still aiming to allow overriding specific options if the user wishes so. (E.g. `production=yes use_lto=no` should work to enable production defaults *but* disable LTO.) That wasn't working as `ARGUMENTS.get()` returns a string and not a boolean as expected by `BoolVariable`, and this wasn't flagged as a bug... So added a helper method using SCons' `BoolVariable._text2bool` to do the conversion manually. | |||
2021-02-24 | Use a more specific type for Area2D/3D body signals | Aaron Franke | |
2021-02-23 | Merge pull request #46351 from vnen/bind-clock-direction | Rémi Verschelde | |
Bind ClockDirection enum | |||
2021-02-23 | Bind ClockDirection enum | George Marques | |
It's the only enum in math_defs.h not bound, and it's used by Plane. | |||
2021-02-23 | add PathFollow3D unit test | Angad Kambli | |
2021-02-23 | Apply minor visual enhancements to the Sun/Env Preview | Michael Alexsander | |
2021-02-23 | Merge pull request #46347 from hpvb/static-link-atomic-clang | Hein-Pieter van Braam | |
Allow static linking with libatomic using clang | |||
2021-02-23 | Allow static linking with libatomic using clang | Hein-Pieter van Braam-Stewart | |
When using use_static_cpp we want to statically link with atomic as well to make sure we don't incur any new runtime dependencies. Scons doesn't quite support this so we do this little trick. | |||
2021-02-23 | Merge pull request #46316 from akien-mga/input-ui_redo-swap-order | Rémi Verschelde | |
Input: Swap events for ui_redo to favor Shift+Ctrl+Z over Ctrl+Y | |||
2021-02-22 | Merge pull request #46264 from nmrkr/build-planes-axes-check | Rémi Verschelde | |
Fix unchecked array access in build_*_planes | |||
2021-02-22 | Merge pull request #46307 from RandomShaper/fix_crash_mono_glue | Rémi Verschelde | |
Make glue generation shutdown more graceful | |||
2021-02-22 | Merge pull request #46315 from reduz/add-preview-sun-and-env | Rémi Verschelde | |
Add preview Sun and Environment | |||
2021-02-22 | Add preview Sun and Environment | reduz | |
* Adds both a preview sun and preview environment to the 3D editor. * They are valid as long as a DirectionalLight3D and WorldEnvironment are not in the scene. * If any is added to the scene, the respective preview is disabled. * Changed WorldEnvironment to better handle multiple node versions. * Added a function in SceneTree to get the first node in a group. * Fixed button minimum size to also consider font height if no text is there, this broke with the TextSever PR. | |||
2021-02-22 | Merge pull request #46324 from hpvb/fix-alsa-missing-symbol | Rémi Verschelde | |
Omit some functions in alsa wrapper | |||
2021-02-22 | Omit some functions in alsa wrapper | Hein-Pieter van Braam-Stewart | |
These functions don't yet exist on ubuntu 14.04 so this leads to build problems there. Omitting these symbols in the generated wrappers fixes this. If we want to start using these symbols at a later date we should just regenerate the wrapper. | |||
2021-02-22 | Merge pull request #46321 from hpvb/fix-clang-atomic-server | Rémi Verschelde | |
Use -latomic when using clang (server platform) | |||
2021-02-22 | Use -latomic when using clang (server platform) | Hein-Pieter van Braam-Stewart | |
version of c9b3a00a63fafa546bf402e32fd21ebe7f274b43 for the server platform | |||
2021-02-22 | Fix unchecked array access in build_*_planes | Delf Neumärker | |
2021-02-22 | Merge pull request #45994 from Jummit/expose-edit-selected | Rémi Verschelde | |
Expose edit_selected in Tree | |||
2021-02-22 | expose edit_selected in Tree | Jummit | |
2021-02-22 | Merge pull request #46313 from goostengine/tests-init-translation-server | Rémi Verschelde | |
Initialize `TranslationServer` in the test environment | |||
2021-02-22 | Input: Swap events for ui_redo to favor Shift+Ctrl+Z over Ctrl+Y | Rémi Verschelde | |
That's the most common one we've been using for the general editor, and while the script editor also supports Ctrl+Y, it should have lower priority. In theory this code should make both be supported the same but for some reason the general editor only seems to use the first entry (the script editor does support both). | |||
2021-02-22 | Initialize `TranslationServer` in the test environment | Andrii Doroshenko (Xrayez) | |
2021-02-22 | Merge pull request #46243 from Calinou/improve-get-node-error-message | Rémi Verschelde | |
Improve the `get_node()` error message to be more descriptive | |||
2021-02-22 | Merge pull request #46309 from akien-mga/ci-no-debug-symbols | Rémi Verschelde | |
CI: Build without debug symbols to reduce cache size | |||
2021-02-22 | Merge pull request #45934 from angad-k/fix-smoothstep-function-documentation | Rémi Verschelde | |
fix minor issue in smooth step function's documentation | |||
2021-02-22 | Improve the `get_node()` error message to be more descriptive | Hugo Locurcio | |
- Mention the origin of the `get_node()` call. - Mention whether the attempted path is absolute or relative. See #46214. | |||
2021-02-22 | CI: Build without debug symbols to reduce cache size | Rémi Verschelde | |
We often hit "Too Many Requests" errors when uploading the cache with `actions/cache` because there's a limit of 10 GB every 5 minutes, and we can easily go over it when we amend or merge several PRs in a short timespan. This will make the CI artifacts less useful for debugging crashes but there's no real way around this. | |||
2021-02-22 | Make glue generation shutdown more graceful | Pedro J. Estébanez | |
2021-02-22 | i18n: Sync translations with Weblate | Rémi Verschelde | |
(cherry picked from commit d0bc9144913a831500a24fc4d8d9f4cb3fd13286) | |||
2021-02-22 | Merge pull request #46263 from dalexeev/fix-help-shortcut-2 | Rémi Verschelde | |
Fix "editor/editor_help" shortcut (again) | |||
2021-02-22 | Merge pull request #46253 from asmaloney/docs-theme | Rémi Verschelde | |
[docs] Clarification on theme's get_stylebox | |||
2021-02-22 | Merge pull request #46296 from madmiraal/remove-unused-variables | Rémi Verschelde | |
Remove unused variables from full-size.html | |||
2021-02-21 | Merge pull request #46230 from gongpha/keep-hue-value | Rémi Verschelde | |
Keep Hue value when Saturation or Value is zero | |||
2021-02-21 | Merge pull request #46297 from madmiraal/add-missing-semicolons | Rémi Verschelde | |
Add missing semicolons to webxr.eterns.js | |||
2021-02-21 | Merge pull request #46295 from Calinou/doc-spinbox-theming | Rémi Verschelde | |
Document theming a SpinBox's background | |||
2021-02-21 | Document theming a SpinBox's background | Hugo Locurcio | |
This closes #46248. | |||
2021-02-21 | Add missing semicolons to webxr.eterns.js | Marcel Admiraal | |
2021-02-21 | Remove unused variables from full-size.html | Marcel Admiraal | |
2021-02-21 | Merge pull request #46277 from angad-k/PathFollow2D-unit-test | Rémi Verschelde | |
PathFollow2D unit test | |||
2021-02-21 | set up PathFollow2D unit test | Angad Kambli | |
2021-02-21 | Merge pull request #46286 from kleonc/label_set_lines_skipped | Rémi Verschelde | |
Label::set_lines_skipped Fail if passed a negative value | |||
2021-02-21 | Merge pull request #43731 from Calinou/test-add-resource | Rémi Verschelde | |
Add a test suite for Resource |