Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-26 | Merge pull request #20478 from mattiascibien/main_Scene_filter | Rémi Verschelde | |
Fix main scene file filter | |||
2018-07-26 | doc: Sync classref with current source | Rémi Verschelde | |
Fix various missing arguments in bindings. | |||
2018-07-26 | Fix main scene file filter | Mattias Cibien | |
2018-07-26 | Merge pull request #18282 from aaronfranke/better-mathf | Rémi Verschelde | |
[Core] [Mono] Fix Color missing int export methods, added 64-bit | |||
2018-07-26 | Merge pull request #18955 from tagcup/fix_set_scale | Rémi Verschelde | |
Removed incorrect Basis::set_scale(). | |||
2018-07-26 | Reduce unnecessary COW on Vector by make writing explicit | Hein-Pieter van Braam | |
This commit makes operator[] on Vector const and adds a write proxy to it. From now on writes to Vectors need to happen through the .write proxy. So for instance: Vector<int> vec; vec.push_back(10); std::cout << vec[0] << std::endl; vec.write[0] = 20; Failing to use the .write proxy will cause a compilation error. In addition COWable datatypes can now embed a CowData pointer to their data. This means that String, CharString, and VMap no longer use or derive from Vector. _ALWAYS_INLINE_ and _FORCE_INLINE_ are now equivalent for debug and non-debug builds. This is a lot faster for Vector in the editor and while running tests. The reason why this difference used to exist is because force-inlined methods used to give a bad debugging experience. After extensive testing with modern compilers this is no longer the case. | |||
2018-07-25 | Expose 64-bit Color methods to GDScript and fix/update Color XML doc | Aaron Franke | |
2018-07-25 | [Core] 64-bit int Color methods | Aaron Franke | |
2018-07-25 | Fix format ignores case in placeholder | Alexander Holland | |
2018-07-25 | Merge pull request #20154 from marcelofg55/midi_driver | Rémi Verschelde | |
Added a new MIDIDriver class | |||
2018-07-24 | Merge pull request #20411 from ibrahn/remove-substr-strlen | Rémi Verschelde | |
removed redundant strlen calculation from String::substr | |||
2018-07-24 | Merge pull request #20407 from akien-mga/po-newline-eof | Max Hilbrunner | |
Fix loading PO files with missing newline after last msgstr | |||
2018-07-24 | removed redundant strlen calculation from String::substr | Ibrahn Sahir | |
2018-07-24 | Fix loading PO files with missing newline after last msgstr | Rémi Verschelde | |
Fixes #20375. | |||
2018-07-24 | reduce clang warning spam | karroffel | |
2018-07-24 | Removed unnecessary assignments | Wilson E. Alvarez | |
2018-07-23 | Merge pull request #15880 from neikeq/better-collections | Ignacio Etcheverry | |
Mono: Add Dictionary and Array classes | |||
2018-07-23 | Merge pull request #19313 from RandomShaper/improve-image | Juan Linietsky | |
Image trilinear scaling + Optimization | |||
2018-07-23 | Optimize image scaling routines | Pedro J. Estébanez | |
2018-07-23 | Add trilinear filtering to image scaling | Pedro J. Estébanez | |
2018-07-23 | Merge pull request #12678 from AndreaCatania/soft | Juan Linietsky | |
Soft body | |||
2018-07-23 | Added function append_array to vector | AndreaCatania | |
2018-07-22 | Fix upper/lower case convertion for characters >= 0x80 | Marcelo Fernandez | |
2018-07-21 | Added a new MIDIDriver class | Marcelo Fernandez | |
2018-07-20 | Add editor highlight for type-safe lines | George Marques | |
The line number is hightlighted to indicate that the line contains only type-safe code. | |||
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 | Add Dictionary::erase_checked(key) method | Ignacio 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-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. |