Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-06-20 | Merge pull request #5196 from vnen/similarity-code-completion | Rémi Verschelde | |
Improve code completion search | |||
2016-06-20 | Property reporty base type when a function fails, fixes #4581 probably also ↵ | Juan Linietsky | |
closes other issues | |||
2016-06-19 | Add similarity comparison to String | George Marques | |
Uses the Sorensen-Dice coefficient to calculate similarity. This also adds String.bigrams() as a convenience function needed by the comparison. | |||
2016-06-19 | Merge pull request #5283 from djrm/remove_prints | Rémi Verschelde | |
Removed lots of prints | |||
2016-06-19 | Merge pull request #5281 from J08nY/useless-preprocessor | Rémi Verschelde | |
Fix #5263: Useless preprocessor condition | |||
2016-06-19 | -Added trigger mode to tracks, useful for properties that work as triggers, ↵ | Juan Linietsky | |
such as playing a sample, an animation, etc. -Better interpolation of discrete tracks, fixes #4417 | |||
2016-06-18 | Removed lots of prints | Daniel J. Ramirez | |
2016-06-19 | Remove USE_QUAD_VECTORS unused check | J08nY | |
2016-06-19 | Remove CHARTYPE_16BITS unused checks | J08nY | |
fix #5263 | |||
2016-06-18 | corrently parse utf8 from zip_io open, closes #1708 | Juan Linietsky | |
this probably failed when exporting or opening android apk files too, should fix that too. | |||
2016-06-18 | Drop fully commented-out files | Rémi Verschelde | |
Part of #5272 | |||
2016-06-18 | Drop empty .cpp files for header-only classes | Rémi Verschelde | |
Part of #5272 | |||
2016-06-18 | Drop empty files that are not used anywhere | Rémi Verschelde | |
Part of #5272 | |||
2016-06-18 | -Changed how Dir works so it's more user friendly, closes #4705 | Juan Linietsky | |
2016-06-18 | -made get_space_left() return values more homogenous, also for script, ↵ | Juan Linietsky | |
converted to mb, closes #4617 | |||
2016-06-18 | Fixed make_dir and make_dir_recursive erros, closes #1680 closes #1872 | Juan Linietsky | |
2016-06-18 | Add missing license headers in our source files (#5255) | Rémi Verschelde | |
Also removes a couple wrong Godot headers from third-party source files. | |||
2016-06-17 | Merge pull request #5250 from bojidar-bg/add-sha256 | Juan Linietsky | |
Add sha256 to String and File/FileAccess. | |||
2016-06-17 | Add sha256 to String and File/FileAccess. | Bojidar Marinov | |
Probably does #4166 | |||
2016-06-17 | -added missing .inc files | Juan Linietsky | |
-Made it possible to change the editor theme -Added two options to theme editor plugin to create empty template themes and editor themes -Make sure that saved themes to .tres keep the null theme fields, to make it easier to keep those when saving/loading the theme | |||
2016-06-16 | Fixed PacketPeer.get_var() return type in docs | J08nY | |
2016-06-15 | Classref: Added docs for StreamPeer* (#5216) | J08nY | |
2016-06-15 | Merge pull request #5192 from J08nY/issue-5190 | Rémi Verschelde | |
Dictionary: rename param in .has() .has_all() .erase() | |||
2016-06-15 | Merge pull request #5210 from J08nY/issue-5189 | Rémi Verschelde | |
String documentation: .ord_at() returns int not String | |||
2016-06-15 | Add joystick vibration support on Linux (#5043) | Wilhem Barbier | |
2016-06-14 | String documentation: .ord_at() returns int not String | J08nY | |
fixes #5189 | |||
2016-06-13 | Merge pull request #5179 from RandomShaper/better-android-export | Juan Linietsky | |
Enhanced Android export | |||
2016-06-13 | Dictionary: rename param in .has() .has_all() .erase() | J08nY | |
fixes #5190, param should be named key, not value | |||
2016-06-13 | Merge pull request #5177 from vnen/string-subsequence | Juan Linietsky | |
Add subsequence search to tools | |||
2016-06-13 | Changed reload logic to auto-hard-reload scripts on save. It's simpler to ↵ | Juan Linietsky | |
use and also fixes #4756 | |||
2016-06-13 | -Avoid negative zero from being saved to config files o resource files, ↵ | Juan Linietsky | |
fixes #4758 | |||
2016-06-13 | -Add visible IO errors when closing a file fails due to it being locked ↵ | Juan Linietsky | |
(most likely on windows), closes #4760 | |||
2016-06-13 | Zip-align exported APK | Pedro J. Estébanez | |
2016-06-12 | Add 'is_subsequence_of' function to String | George Marques | |
2016-06-12 | Made error when signal calls a method with the wrong number of parameters ↵ | Juan Linietsky | |
more detailed, closes #4893 | |||
2016-06-11 | -All variables from script are visible through get_property_list(), not just ↵ | Juan Linietsky | |
those with export() -Added PROPERTY_USAGE_SCRIPT_VARIABLE to identify what comes from script -closes #5146 | |||
2016-06-10 | Add 'rfind' function to Array | George Marques | |
2016-06-10 | Add 'from' argument to Array.find() | George Marques | |
2016-06-08 | -Ability to reload (and soft reload) tool scripts. Please test! | Juan Linietsky | |
2016-06-07 | Merge pull request #4861 from brakhane/negative-indexing | Juan Linietsky | |
Add support for Python-like negative indexing | |||
2016-06-07 | Exposed Image.INTERPOLATE_* | J08nY | |
2016-06-07 | Fix indentation issues in last commits | Rémi Verschelde | |
Ping @reduz. | |||
2016-06-06 | Merge pull request #4693 from kjohnson0451/dvector_invert | Juan Linietsky | |
Adds invert() method DVector | |||
2016-06-06 | Merge pull request #4895 from TheoXD/_fix_interactive_loader_cache | Juan Linietsky | |
fixed interactive_loader() not returning a cached scene | |||
2016-06-06 | Merge pull request #4977 from SaracenOne/scripting_expose | Juan Linietsky | |
Expose extra methods and constants to scripts | |||
2016-06-06 | Merge pull request #5026 from Geequlim/patch9frame-extension | Juan Linietsky | |
Enhanced Patch9Frame | |||
2016-06-06 | Merge pull request #5048 from J08nY/dictionary | Juan Linietsky | |
Added Dictionary.values() | |||
2016-06-06 | Merge branch 'master' of https://github.com/godotengine/godot | Juan Linietsky | |
2016-06-06 | Added function get_signals_connected_to_this_this() | Juan Linietsky | |
should help properly implement #5058 | |||
2016-06-06 | Add missing license information (MiniZip) | Roberto | |