summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-03-31set StartupWMClass in linux `.desktop` filebackwardspy
this allows linux app launchers and docks to correctly associate the godot project selector & editor windows with the icon used to launch godot. it prevents this problem specifically: https://askubuntu.com/questions/1144214/why-does-my-custom-launcher-file-create-two-icons-on-the-launcher-bar
2021-03-31Merge pull request #47230 from trollodel/anim_track_colorRémi Verschelde
Preview the color animation in the animation editor
2021-03-31Merge pull request #47250 from BastiaanOlij/check_vulkan_versionRémi Verschelde
Obtain supported Vulkan API
2021-03-31Merge pull request #47519 from AndreaCatania/AndreaCatania-patch-4Rémi Verschelde
Fixes editor crash on closing
2021-03-31As GLSLang seems to be all or nothing, added our own definesBastiaan Olij
2021-03-31Fixes editor crash on closingAndreaCatania
Fixes editor crash when the gizmo is destroyed and the `SceneTree` is already freed.
2021-03-31Merge pull request #44289 from bruvzg/ctl_gl_contoursRémi Verschelde
Expose dynamic font vector outlines to the GDScript.
2021-03-31Merge pull request #44951 from KoBeWi/documintRémi Verschelde
Complete the docs for primitive types
2021-03-31Merge pull request #47511 from Calinou/test-add-dictionaryRémi Verschelde
Add a test suite for Dictionary
2021-03-31[Complex Text Layouts] Provide access to glyph contour points.bruvzg
2021-03-31Complete the docs for primitive typeskobewi
2021-03-31Add a test suite for DictionaryHugo Locurcio
Co-authored-by: Sarav Noor Singh <saravnoorsingh@Saravs-MBP.T-mobile.com>
2021-03-30Merge pull request #47464 from szymonm-google/add_debug_reportRémi Verschelde
Add support for VK_EXT_debug_report in Vulkan
2021-03-30Merge pull request #46702 from HaSa1002/fix-min-size-resizeRémi Verschelde
Fix removal of `rect_min_size` not triggering resize
2021-03-30WIP: Add support for VK_EXT_debug_report in VulkanSzymon Majewski
2021-03-30Merge pull request #47491 from groud/improve_tabsRémi Verschelde
Implement Tabs node minimum size
2021-03-30Implement Tabs minimum sizeGilles Roudière
2021-03-30Merge pull request #47494 from Calinou/gui-custom-font-fix-require-restartRémi Verschelde
Require editor restart after changing GUI custom theme or font
2021-03-30Require editor restart after changing GUI custom theme or fontHugo Locurcio
The `restart_if_changed` project setting hint wasn't set correctly.
2021-03-30Merge pull request #47131 from vnen/gdscript-export-fixRémi Verschelde
Fix a few issues with @export in GDScript
2021-03-30Merge pull request #47493 from ↵Rémi Verschelde
floppyhammer/fix-window-resizing-after-minimization-on-windows Fix window resizing after minimization on Windows
2021-03-30Merge pull request #47492 from vnen/gdscript-typed-arraysRémi Verschelde
GDScript: Fix array type check on constants
2021-03-30Fix window resizing after minimization on Windowsfloppyhammer
2021-03-30GDScript: Fix array type check on constantsGeorge Marques
They mistakenly pointing to the wrong union member (variable instead of constant).
2021-03-30GDScript: Implement export of typed arraysGeorge Marques
2021-03-30GDScript: Allow export of enum variablesGeorge Marques
Also fix the enum type in variables to be integer.
2021-03-30GDScript: Show error on invalid initializer expressionGeorge Marques
2021-03-30Move GDSript annotation application after type-checkingGeorge Marques
This ensures that annotations that rely on the datatype (such as @export) can validated it timely, allowing compound expressions instead of only literal values.
2021-03-30Merge pull request #47486 from bruvzg/rtl_effectsRémi Verschelde
RichTextLabel: On custom effect change, parse bbcode only if it's enabled and not empty.
2021-03-30RichTextLabel: On custom effect change, parse bbcode only if it's enabled ↵bruvzg
and not empty.
2021-03-30Merge pull request #47470 from rafallus/fix/quat-multRémi Verschelde
Fix Quat multiplication
2021-03-30i18n: Sync translations with WeblateRémi Verschelde
(cherry picked from commit cca2637b9b9dcb16070eb50a69c601a5f076c683)
2021-03-29Fix Quat multiplicationrafallus
x, y, z values were updated too early
2021-03-29Merge pull request #47466 from Faless/js/4.x_notification_call_fixRémi Verschelde
[HTML5] Fix WM notifications not being called.
2021-03-29[HTML5] Fix WM notifications not being called.Fabio Alessandrelli
Regression from the library refactoring, binding and not calling is pretty useless 'o_o.
2021-03-29Merge pull request #47462 from Faless/js/4.x_init_no_promiseRémi Verschelde
[HTML5] Fix Mono builds (old emcc?)
2021-03-29Merge pull request #47458 from akien-mga/fbx-fix-bone-suffixRémi Verschelde
FBX: Fix first bone getting unnecessary '_1' suffix
2021-03-29[HTML5] Fix Mono builds (old emcc?)Fabio Alessandrelli
Promise chaining the emscripten module `then` function breaks it badly, causing an infinite loop. I'm unsure about the source of the issue, but most likely at this point is due to the old emscripten version (I remember very old html5 builds having issue with promise chaining too). With this commit, we no longer use the module as a promise, and instantiate it using `Promise` objects directly for compatibility.
2021-03-29FBX: Fix first bone getting unnecessary '_1' suffixRémi Verschelde
Fixes #43820. Co-authored-by: Gordon MacPherson <gordon@gordonite.tech>
2021-03-29Merge pull request #47457 from bruvzg/rtl_spacingRémi Verschelde
RichTextLabel: fix font extra spacing and style box size usage.
2021-03-29Merge pull request #46830 from vnen/gdscript-typed-arraysRémi Verschelde
GDScript typed arrays
2021-03-29Use extra font spacing in the RichTextLabel line height calculation, and ↵bruvzg
stylebox size in the minimum size calculation.
2021-03-29Merge pull request #46844 from geekrelief/gdnative_unregister_script_fixRémi Verschelde
fixes #46839, ensure library_classes is cleared and free funcs are ca…
2021-03-29Add typed arrays to GDScriptGeorge Marques
- Use `Array[type]` for type-hints. e.g.: `var array: Array[int] = [1, 2, 3]` - Array literals are typed if their storage is typed (variable asssignment of as argument in function all). Otherwise they are untyped.
2021-03-29Merge pull request #47424 from DanielKriz/tests/path3dRémi Verschelde
add tests for path3d
2021-03-29Merge pull request #47435 from madmiraal/rename-texture-get_dataRémi Verschelde
Rename Texture.get_data() to get_image()
2021-03-29add tests for path3dDaniel Kříž
2021-03-29doc: Sync classref with current sourceRémi Verschelde
2021-03-29Merge pull request #47446 from bruvzg/macos_sign_exports_by_defaultRémi Verschelde
[macOS] Enable code signing by default, use ad-hoc signature if no identity specified.
2021-03-29[macOS] Enable code signing by default, use ad-hoc signature if no identity ↵bruvzg
specified.