summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-12-10Snap To Floor improperly offsets nodejeffuntildeath
fix for issue #44282 AABB for collision geometry was being calculated based on parent nodes transform without consideration for collision geometries translation. Also hopefully clarified logic for selecting starting point for ray cast
2020-12-11Merge pull request #44271 from akien-mga/pvrtc-compress-cleanupRémi Verschelde
PVRTC: Move compress func to `modules/pvr`, drop obsolete PVRTexTool code
2020-12-10Image: Rename PVRTC{2,4} to PVRTC1_{2,4}, drop COMPRESS_PVRTC2Rémi Verschelde
We haven't had a proper implementation for COMPRESS_PVRTC2 (which is PVRTC1 2-bpp) in years, so let's drop it instead of keeping a compress type which doesn't work. The other enum values were renamed to clarify that our PVRTC2 and PVRTC4 are respectively PVRTC1 2-bpp and PVRTC1 4-bpp. PVRTC2 2-bpp and 4-bpp are not implemented yet.
2020-12-10PVRTC: Move compress func to `modules/pvr`, drop obsolete PVRTexTool codeRémi Verschelde
The code we had for PVRTexTool doesn't work as it's not compatible with current PVRTexTool CLI options, and likely hasn't been for years. Instead, we have our own vendored pvrtccompressor thirdparty library which all users have thus de-facto been using. This commit moves the compress code to `modules/pvr` where it belongs. There's no proper compress function for PVRTC 2-bit format, that's a bug that will need to be fixed (currently it's compressed as 4-bit format even if you use Image::FORMAT_PVRTC2). Fixes #28669.
2020-12-10Merge pull request #44266 from akien-mga/js-export-code-cleanupRémi Verschelde
HTML5: Code style cleanup for export code
2020-12-10i18n: Sync translations with WeblateRémi Verschelde
(cherry picked from commit 3e20a98503f66bfe0bfc5140582a78e76c117588)
2020-12-10Merge pull request #44267 from madmiraal/rename-viewport-enumsRémi Verschelde
Rename Viewport::ClearMode::CLEAR_MODE_ONLY_NEXT_FRAME to CLEAR_MODE_ONCE
2020-12-10Merge pull request #44265 from YeldhamDev/popupmenu_circle_back_disabledRémi Verschelde
Allow to circle back in 'PopupMenu' even if the first/last item is non-selectable
2020-12-10HTML5: Code style cleanup for export codeRémi Verschelde
2020-12-10Allow to circle back in 'PopupMenu' even if the first/last item is ↵Michael Alexsander
non-selectable
2020-12-10Rename Viewport::ClearMode::CLEAR_MODE_ONLY_NEXT_FRAME to CLEAR_MODE_ONCEMarcel Admiraal
2020-12-10Merge pull request #44262 from akien-mga/fsdock-move-mention-conflicting-filesRémi Verschelde
FileSystemDock: List conflicting files on move
2020-12-10FileSystemDock: List conflicting files on moveRémi Verschelde
Fixes #24167.
2020-12-10Merge pull request #44260 from madmiraal/rename-area3d-audio_bus_nameRémi Verschelde
Rename Area3D audio_bus_name getter and setter
2020-12-10Merge pull request #40708 from bruvzg/improve_os_localeRémi Verschelde
Improve `OS::get_locale()` and documentation.
2020-12-10Merge pull request #44233 from YeldhamDev/popupmenu_circle_backRémi Verschelde
Re-add circle back scrolling to 'PopupMenu'
2020-12-10Merge pull request #44248 from Nickswoboda/fix-dragging-0-itemsRémi Verschelde
Fix scene being modified when arrows are pressed with no node selected
2020-12-10Merge pull request #44070 from YeldhamDev/popupmenu_separator_font_colorRémi Verschelde
Add "font_color_separator" theme property to 'PopupMenu'
2020-12-10Merge pull request #43920 from Calinou/doc-videoplayer-no-remappingRémi Verschelde
Document the lack of localization remapping support in VideoPlayer
2020-12-10Merge pull request #44234 from jeffuntildeath/masterRémi Verschelde
fix for snap to floor editor crash bug
2020-12-10Merge pull request #44197 from Faless/fix/4.x_easingRémi Verschelde
Fix some easing equations' undefined behaviours.
2020-12-10Merge pull request #44016 from KoBeWi/emit_me_senpaiRémi Verschelde
Mention that 'changed' signal needs manual emit
2020-12-10Rename Area3D audio_bus_name getter and setterMarcel Admiraal
2020-12-10Merge pull request #44124 from volzhs/tabs-in-frontRémi Verschelde
Add option to draw all tabs in front
2020-12-09Fix scene being modified when arrows are pressed with no node selectedNick Swoboda
2020-12-10Add option to draw all tabs in frontvolzhs
2020-12-09Merge pull request #44221 from Faless/js/4.x_editor_betaRémi Verschelde
[HTML5] Editor style, audio fixes
2020-12-09fix for snap to floor editor crash bugjeffuntildeath
fix for issue #44231: snap_selected_nodes_to_floor() results in an editor crash when a child collisionshape has invalid shape object
2020-12-09[HTML5] Fix errors when Mic is not allowed.Fabio Alessandrelli
2020-12-09[HTML5] Improve platform buildsystem.Fabio Alessandrelli
Check emcc version requirements when building GDNative. Add more build options (sanitizers, initial memory).
2020-12-09[HTML5] Add logo and favicon to editor html.Fabio Alessandrelli
2020-12-09Merge pull request #44229 from YeldhamDev/audiostreammp3_iconRémi Verschelde
Add icon for 'AudioStreamMP3' resource
2020-12-09Re-add circle back scrolling to 'PopupMenu'Michael Alexsander
2020-12-09Add icon for 'AudioStreamMP3' resourceMichael Alexsander
2020-12-09Merge pull request #44223 from mbrlabs/assetlib-scroll-upRémi Verschelde
Asset Library: Scroll up the ScrollContainer after page load
2020-12-09[HTML5] Improve the editor HTML template.Hugo Locurcio
2020-12-09Asset Library: Scroll up the ScrollContainer after page loadMarcus Brummer
2020-12-09[HTML5] Editor also persists cache.Fabio Alessandrelli
2020-12-09Sync RasterizerDummy changes.Fabio Alessandrelli
Will also need to be renamed.
2020-12-09LSP: Fix iterator in enum API dumpRémi Verschelde
2020-12-09Update AUTHORS and DONORS listRémi Verschelde
Thanks to all contributors and donors for making Godot possible!
2020-12-09Merge pull request #44218 from aaronfranke/grid-inst-errRémi Verschelde
Fix trying to set grid visibility on an invalid instance
2020-12-09Merge pull request #44128 from KoBeWi/🧹Rémi Verschelde
Cleanup unused engine code
2020-12-09Merge pull request #44217 from akien-mga/fix-signals-after-renamesRémi Verschelde
Fix connections to CanvasItem and Tabs signals
2020-12-09Fix trying to set grid visibility on an invalid instanceAaron Franke
2020-12-09Cleanup unused engine codeTomasz Chabora
2020-12-09Fix connections to CanvasItem and Tabs signalsRémi Verschelde
Follow-up to #44188 and #44189.
2020-12-09Merge pull request #44215 from Faless/fix/fa_buffered_remove_androidRémi Verschelde
Remove unused FileAccessJAndroid.
2020-12-09Merge pull request #43931 from bruvzg/ctl_comp_fontRémi Verschelde
[Complex Text Layouts] Add compatibility for legacy Font resources.
2020-12-09Remove unused FileAccessJAndroid.Fabio Alessandrelli