summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-06-20Merge pull request #24249 from zorbathut/zorbathut/animimmediateRémi Verschelde
Implement AnimationPlayer call modes as per #23498.
2019-06-20Merge pull request #24487 from Meirinha/masterRémi Verschelde
Added UV and UV2 to shader function light() built-in, fixes issue #24120
2019-06-20Merge pull request #29918 from akien-mga/scons-gcc-WclobberedRémi Verschelde
SCons: Enable -Wclobbered in warnings=extra for GCC
2019-06-20Merge pull request #25573 from nekomatata/button-shortcut-fixRémi Verschelde
Fixed shortcut events in BaseButton (now acts the same as ui_accept action)
2019-06-20Merge pull request #26205 from Calinou/spatialmaterial-use-packed-channelsRémi Verschelde
Tweak SpatialMaterial's default metallic and roughness texture channels
2019-06-20Merge pull request #29914 from YeldhamDev/fix_onion_errorsRémi Verschelde
Fix minor onion layering control errors
2019-06-20SCons: Enable -Wclobbered in warnings=extra for GCCRémi Verschelde
2019-06-20Merge pull request #29874 from ibrahn/rework-png-loadsaveRémi Verschelde
PNG driver reworked to use libpng 1.6 simplified API
2019-06-20Merge pull request #29910 from m4gr3d/dev_deprecate_armv6Rémi Verschelde
Deprecate support for Android armv6 architecture
2019-06-20Fixed shortcut events in BaseButton (now acts the same as ui_accept action)PouleyKetchoupp
2019-06-19Fix minor onion layering control errorsMichael Alexsander Silva Dias
2019-06-19Merge pull request #27188 from samH-FIT/MacroUpdateRémi Verschelde
Made use of semicolons after GDCLASS more consistent, added semicolons where I found them missing.
2019-06-19Deprecate armv6 support for Androidfhuya
2019-06-19Merge pull request #29902 from KoBeWi/dem_settersRémi Verschelde
Fix set_pick_color error
2019-06-19Merge pull request #29901 from BastiaanOlij/fix_cameraserver_constRémi Verschelde
Made constants fully upper case in camera server
2019-06-19Merge pull request #29899 from Chaosus/select_all_tracksRémi Verschelde
Added button to select all tracks in track copy dialog
2019-06-19Merge pull request #28295 from zqyoung1/fix-gridmap-nav-schemesRémi Verschelde
Fixed navigation schemes Modo/Maya when used with grid map tile place…
2019-06-19Merge pull request #28906 from Xrayez/fix-28824Rémi Verschelde
Enforce Unicode encoding in MSVC
2019-06-19Merge pull request #29897 from Chaosus/fix_animation_track_selectionRémi Verschelde
Fix animation keys selection with SHIFT/CTRL
2019-06-19Merge pull request #26748 from raphael10241024/instanceRémi Verschelde
Fix editor crash when saving a scene containing an inherited scene instance.
2019-06-19Made use of semicolons more consitent, fixed formattingJohnJLight
2019-06-19Merge pull request #27237 from Chaosus/astar_2dRémi Verschelde
Added 2D functions to AStar
2019-06-19Merge pull request #27310 from KoBeWi/angular_dankRémi Verschelde
Make angular_damp of new Area nodes match the global default
2019-06-19Fix set_pick_color errorTomasz Chabora
2019-06-19Merge pull request #27389 from YeldhamDev/acceptdiag_label_wrapRémi Verschelde
Add option to enable autowrapping for label inside 'AcceptDialog'
2019-06-19Made constants fully upper case in camera serverBastiaan Olij
2019-06-19Merge pull request #29878 from Dentrax/fixesRémi Verschelde
Added ERR_FAIL checks for `Animation::track_set_key_value` and `AnimationNodeStateMachine::remove_node`
2019-06-19Added button to select all tracks in track copy dialogChaosus
2019-06-19Fixed navigation schemes Modo/Maya when used with grid map tile placementZach Young
2019-06-19Merge pull request #29893 from capnm/capnm-posix-read-write-returnRémi Verschelde
Linux: Check return values of posix read/write
2019-06-19Enforce Unicode encoding in MSVCAndrii Doroshenko (Xrayez)
This can help to solve compilation issues on systems with Japanese locale with encodings like Shift_JIS and UTF-8-BOM. Also be more consistent using String::utf8() to represent cyrilic unicode characters in test_string.cpp Clarified some comments in test_string.cpp for some Unicode characters.
2019-06-19Merge pull request #29463 from Faless/editor/debugger_take_connectionRémi Verschelde
Editor debugger now always handle connections.
2019-06-19Merge pull request #28648 from KoBeWi/substr-1Rémi Verschelde
Make second parameter of substr optional
2019-06-19Merge pull request #28659 from KoBeWi/rainbow_modeRémi Verschelde
Add HSV mode to color picker
2019-06-19Merge pull request #28759 from aqnuep/bc6h_fixRémi Verschelde
Enable BC6H compression for all HDR formats
2019-06-19Merge pull request #28787 from mitchcurtis/fix-28059Rémi Verschelde
Script Text Editor: respect Move Down and Move Up shortcuts on macOS
2019-06-19Fix animation keys selection with SHIFT/CTRL Chaosus
2019-06-19Merge pull request #29037 from mdahlgrengadd/masterRémi Verschelde
Make FFT size and oversampling adjustable in smbPitchShifter, add windowing to smbFFT
2019-06-19added forgotten err_fail_index checkFurkan Türkal
2019-06-19Png driver reworked to use libpng 1.6 simplified APIIbrahn Sahir
Wrapped libpng usage in a pair of functions under PNGDriverCommon, which convert between Godot Image and png data. Switched to libpng 1.6 simplified API for ease of maintenance. Implemented ImageLoaderPNG and ResourceSaverPNG in terms of PNGDriverCommon functions. Travis, switched to builtin libpng (thus builtin freetype and zlib also) so we can build on Xenial.
2019-06-19Linux: Check return values of posix read/writeMartin Capitanio
Fixes #29849, for real this time.
2019-06-19Editor debugger now always handle connections.Fabio Alessandrelli
The editor debugger used to only take the first client connection, leaving potential new connections hanging until TCP timeout. This caused a lock after some time when running multiple game/editor instances, as the client will fill the write buffer, and then lock until timeout (as the editor server would never read from that socket). The editor now drops new connections immediately if it is already connected to a client.
2019-06-19Merge pull request #29598 from GodotExplorer/uri-encodeRémi Verschelde
Expose String.http_escape and String.http_unescape
2019-06-19Merge pull request #29866 from ↵Rémi Verschelde
akien-mga/nothing-that-surrounds-us-is-object-all-is-subject GDScript: Improve error on Object to Object invalid argument calls
2019-06-19Merge pull request #29470 from KoBeWi/_Rémi Verschelde
Add a separator in debug output for readability
2019-06-19Merge pull request #29547 from santouits/filter-scriptsRémi Verschelde
Add filter search for script list and the members in the script editor
2019-06-19Merge pull request #29493 from YeldhamDev/enhance_fix_feature_profileRémi Verschelde
Enhancements and fixes for the editor feature profile
2019-06-19Merge pull request #29851 from akien-mga/doc-resourceRémi Verschelde
doc: Improve docs for Resource* classes
2019-06-19Merge pull request #29876 from bruvzg/init_mouse_pos_macosRémi Verschelde
Update macOS global mouse position at startup
2019-06-18Update macOS global mouse position at startupbruvzg