summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2018-07-24Merge pull request #20407 from akien-mga/po-newline-eofMax Hilbrunner
Fix loading PO files with missing newline after last msgstr
2018-07-24Fix loading PO files with missing newline after last msgstrRémi Verschelde
Fixes #20375.
2018-07-24reduce clang warning spamkarroffel
2018-07-24Removed unnecessary assignmentsWilson E. Alvarez
2018-07-23Merge pull request #15880 from neikeq/better-collectionsIgnacio Etcheverry
Mono: Add Dictionary and Array classes
2018-07-23Merge pull request #19313 from RandomShaper/improve-imageJuan Linietsky
Image trilinear scaling + Optimization
2018-07-23Optimize image scaling routinesPedro J. Estébanez
2018-07-23Add trilinear filtering to image scalingPedro J. Estébanez
2018-07-23Merge pull request #12678 from AndreaCatania/softJuan Linietsky
Soft body
2018-07-23Added function append_array to vectorAndreaCatania
2018-07-22Fix upper/lower case convertion for characters >= 0x80Marcelo Fernandez
2018-07-20Add editor highlight for type-safe linesGeorge Marques
The line number is hightlighted to indicate that the line contains only type-safe code.
2018-07-20Merge pull request #20157 from GodotExplorer/image-load-webpJuan Linietsky
Add webp buffer loader for Image
2018-07-20Fix build issues and typos after c69de2ba4Rémi Verschelde
2018-07-20Fix unwanted restartingvolzhs
2018-07-19-Project/Editor settings now use new inspectorJuan 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-18Several improvements to editor inspector usability and styleJuan Linietsky
2018-07-18Add Dictionary::erase_checked(key) methodIgnacio Etcheverry
Same as erase, but it returns a boolean value indicating whether the pair was erased or not. This method should be removed during the next compatibility breakage, and 'Dictionary::erase(key)' should be changed to return a boolean.
2018-07-18fix nameclash with MSVCkarroffel
2018-07-18Style: Format code with clang-format 6.0.1Rémi Verschelde
2018-07-18Fixed OS.has_feature not using custom feature tags.matthew1006
2018-07-17reworked 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-17Merge pull request #20195 from Faless/ssl_handshakeMax Hilbrunner
Non-blocking SSL handshake
2018-07-17Add webp buffer loader for Imagegeequlim
Cleanup the code memory load related code for Image Fix jpeg buff load function always returns OK event failed
2018-07-16HTTP client now uses non blocking handshakeFabio Alessandrelli
2018-07-16Implement non blocking-handshake for StreamPeerSSLFabio Alessandrelli
2018-07-15Global class names (and GDScript support for it)Juan Linietsky
2018-07-09Added support for extra mouse buttons.unknown
2018-07-08MultiplayerAPI::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-05Merge pull request #19183 from Nallebeorn/rename-main-sceneMax Hilbrunner
Update resource file project settings after renaming/moving the files
2018-07-05Merge pull request #19279 from aaronfranke/core-fposmod-fixMax Hilbrunner
[Core] [Math] Fix fposmod() function
2018-07-05Merge pull request #19229 from RandomShaper/fix-focus-stealMax Hilbrunner
Fix debugger focus stealing
2018-07-04Fix CORS problems due to added headers on JS targetGagaPete
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-03Merge pull request #19919 from marcelofg55/notif_crashMax Hilbrunner
Add a new notification to detect crashes on native scripts
2018-07-03Update resource file project settings on renameBenjamin
2018-07-03Merge pull request #19192 from marcelofg55/undo_redo_msgMax Hilbrunner
Add a message when there is nothing to Undo or Redo
2018-07-03Ensure, if a texture meant for a normal map is imported and size limit ↵Juan Linietsky
exists, that it's renormalized after resize.
2018-07-03Merge pull request #19802 from matthew1006/custom-feature-tag-fixMax Hilbrunner
Fixed project settings overrides not using custom feature tags.
2018-07-03Merge pull request #19819 from MetaSaval/masterMax Hilbrunner
Change the neighbours vector to a set in AStar
2018-07-03Hacked around duplication bug. I think duplicate needs to be even smarter, ↵Juan Linietsky
maybe pass two bools? (containers and/or resources)
2018-07-02Added ability for SSAO to affect AO textures tooJuan Linietsky
2018-07-02Add a new notification to detect crashes on native scriptsMarcelo 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 optimizationJuan Linietsky
-Fixes to script language, PlaceHolder can now get and check methods
2018-06-27Change the neighbours vector to a set in AStarDanny
This fixes an issue where one could not disconnect two points that were connected more than once.
2018-06-27Changes to how node paths are selected from property, allowing setting a hint.Juan Linietsky
2018-06-27Fixed project settings overrides not using custom feature tags.matthew1006
2018-06-25State machine animation nodeJuan Linietsky
2018-06-25Merge pull request #19193 from tagcup/quat_normJuan Linietsky
Fixed Basis -> Quat conversions, added a few safety checks.
2018-06-22Merge pull request #19695 from rraallvv/nocache_gen_masterRémi Verschelde
Add NoCache wrapper to Command (master)