Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-20 | Merge pull request #20157 from GodotExplorer/image-load-webp | Juan Linietsky | |
Add webp buffer loader for Image | |||
2018-07-20 | Fix build issues and typos after c69de2ba4 | Rémi Verschelde | |
2018-07-20 | Fix unwanted restarting | volzhs | |
2018-07-19 | -Project/Editor settings now use new inspector | Juan Linietsky | |
-Project/Editor settings now show tooltips properly -Settings thar require restart now will show a restart warning -Video driver is now visible all the time, can be changed easily -Added function to request current video driver | |||
2018-07-18 | Several improvements to editor inspector usability and style | Juan Linietsky | |
2018-07-18 | fix nameclash with MSVC | karroffel | |
2018-07-18 | Style: Format code with clang-format 6.0.1 | Rémi Verschelde | |
2018-07-18 | Fixed OS.has_feature not using custom feature tags. | matthew1006 | |
2018-07-17 | reworked ustring.rsplit to fix behaviour. | Ibrahn Sahir | |
Previous problems include failure to remove the splitter from the last element found and a possible infinite loop dealing with multi-character splitter strings. | |||
2018-07-17 | Merge pull request #20195 from Faless/ssl_handshake | Max Hilbrunner | |
Non-blocking SSL handshake | |||
2018-07-17 | Add webp buffer loader for Image | geequlim | |
Cleanup the code memory load related code for Image Fix jpeg buff load function always returns OK event failed | |||
2018-07-16 | HTTP client now uses non blocking handshake | Fabio Alessandrelli | |
2018-07-16 | Implement non blocking-handshake for StreamPeerSSL | Fabio Alessandrelli | |
2018-07-15 | Global class names (and GDScript support for it) | Juan Linietsky | |
2018-07-09 | Added support for extra mouse buttons. | unknown | |
2018-07-08 | MultiplayerAPI::send_bytes transfer mode support. | Fabio Alessandrelli | |
Added as extra parameter, allow you to specify which transfer mode to use for those specific bytes | |||
2018-07-05 | Merge pull request #19183 from Nallebeorn/rename-main-scene | Max Hilbrunner | |
Update resource file project settings after renaming/moving the files | |||
2018-07-05 | Merge pull request #19279 from aaronfranke/core-fposmod-fix | Max Hilbrunner | |
[Core] [Math] Fix fposmod() function | |||
2018-07-05 | Merge pull request #19229 from RandomShaper/fix-focus-steal | Max Hilbrunner | |
Fix debugger focus stealing | |||
2018-07-04 | Fix CORS problems due to added headers on JS target | GagaPete | |
Before this change, missing User-Agent and Accept headers were automatically added on all platforms. Setting the User-Agent header forces the browser to do a CORS preflight (see 1) which fails if the HTTP endpoint is not configured appropriate. It's not neccesary to set either header as the browser sets them and so this commit disables that functionality on the JS target. 1: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#Simple_requests | |||
2018-07-03 | Merge pull request #19919 from marcelofg55/notif_crash | Max Hilbrunner | |
Add a new notification to detect crashes on native scripts | |||
2018-07-03 | Update resource file project settings on rename | Benjamin | |
2018-07-03 | Merge pull request #19192 from marcelofg55/undo_redo_msg | Max Hilbrunner | |
Add a message when there is nothing to Undo or Redo | |||
2018-07-03 | Ensure, if a texture meant for a normal map is imported and size limit ↵ | Juan Linietsky | |
exists, that it's renormalized after resize. | |||
2018-07-03 | Merge pull request #19802 from matthew1006/custom-feature-tag-fix | Max Hilbrunner | |
Fixed project settings overrides not using custom feature tags. | |||
2018-07-03 | Merge pull request #19819 from MetaSaval/master | Max Hilbrunner | |
Change the neighbours vector to a set in AStar | |||
2018-07-03 | Hacked around duplication bug. I think duplicate needs to be even smarter, ↵ | Juan Linietsky | |
maybe pass two bools? (containers and/or resources) | |||
2018-07-02 | Added ability for SSAO to affect AO textures too | Juan Linietsky | |
2018-07-02 | Add a new notification to detect crashes on native scripts | Marcelo Fernandez | |
2018-07-02 | -Fixes to how hashing happened, now StringName and NodePath use default ↵ | Juan Linietsky | |
hasher, this was leading to some severe slowdown in scenarios -Fixes to some duplication scenarios for instanced scenes | |||
2018-06-30 | -Fixes to OBJ importer, option to disable optimization | Juan Linietsky | |
-Fixes to script language, PlaceHolder can now get and check methods | |||
2018-06-27 | Change the neighbours vector to a set in AStar | Danny | |
This fixes an issue where one could not disconnect two points that were connected more than once. | |||
2018-06-27 | Changes to how node paths are selected from property, allowing setting a hint. | Juan Linietsky | |
2018-06-27 | Fixed project settings overrides not using custom feature tags. | matthew1006 | |
2018-06-25 | State machine animation node | Juan Linietsky | |
2018-06-25 | Merge pull request #19193 from tagcup/quat_norm | Juan Linietsky | |
Fixed Basis -> Quat conversions, added a few safety checks. | |||
2018-06-22 | Merge pull request #19695 from rraallvv/nocache_gen_master | Rémi Verschelde | |
Add NoCache wrapper to Command (master) | |||
2018-06-21 | Added auto triangle generation in blend space, using Delaunay. | Juan Linietsky | |
2018-06-21 | Remove error messages | Juan Linietsky | |
2018-06-21 | add NoCache wrapper to Command | Rhody Lugo | |
2018-06-19 | Fixed float Color conversions to int types | Max | |
2018-06-18 | -Added AnimationGraphPlayer (still missing features) | Juan Linietsky | |
-Added ability to edit resources from built-in inspector (wip, needs testing and feedback) | |||
2018-06-18 | Expose OS.get_ticks_usec() | Marc Gilleron | |
2018-06-13 | Merge pull request #19487 from JFonS/better_3d_select | Rémi Verschelde | |
Improve 3D selection | |||
2018-06-13 | Polished 3D selection | JFonS | |
2018-06-13 | Merge pull request #19509 from SaracenOne/ime | Rémi Verschelde | |
IME context detection. | |||
2018-06-12 | Fixed regression making the logger not respect the max files limit. | Michael Alexsander Silva Dias | |
2018-06-11 | IME context detection. | Saracen | |
2018-06-10 | [Core] [Math] Fix fposmod() function | Aaron Franke | |
ffff meth | |||
2018-06-07 | Added functions to get trimesh info | Andrea Catania | |