Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2016-06-05 | vsync support | Juan Linietsky | |
-works on windows -may not work on X11, if so please fix -OSX does not seem to support disabling vsync | |||
2016-06-05 | Add support for Python-like negative indexing | Dennis Brakhane | |
Negative indexing is a useful feature in Python, especially when combined with array slicing. Array slicing will hopefully be implemented later, but negative indexing is useful in its own right. A negative index is indexing from the end of an array, "array[-1] == array[array.size()-1]", using a negative index larger/smaller than the length of the array is still an error. While primarily useful for arrays and strings, support is also added to "array like" structures like Vector3 and Color. This is done just to be consistent; vector3[2] is much clearer than vector3[-1], but disallowing it while allowing it for an array with 3 elements seems confusing. | |||
2016-06-05 | Move repetitive code to macros | Dennis Brakhane | |
In preparation for the following "allow negative indexing" commit, replace the repetitive array "set index" and "get index" code with macros. no functional changes were made, the resulting machine code is unchanged. | |||
2016-06-05 | fix ui_* input events in Editor | Andreas Haas | |
`input/` is the category for these in globals ^^ fixes #5050 | |||
2016-06-05 | Added Dictionary.values() | J08nY | |
2016-06-05 | Make Input Actions config not affect the editor | Juan Linietsky | |
2016-06-04 | -customizable shortcuts in editor | Juan Linietsky | |
-editor settings now save to .tres instead of .xml -buttons can now hold a shortcut | |||
2016-06-04 | Merge pull request #5036 from J08nY/inputmap-actions | Rémi Verschelde | |
Added InputMap.get_actions() | |||
2016-06-04 | Merge pull request #4999 from volzhs/fix-project-path | Rémi Verschelde | |
change invalid characters when get user data dir on Windows & Unix | |||
2016-06-05 | Add texture region support for stylebox render | Geequlim | |
2016-06-04 | Created a NodeDock with signals and groups | Juan Linietsky | |
2016-06-04 | Added InputMap.get_actions() | J08nY | |
get_actions() lists all actions in the InputMap. | |||
2016-06-03 | Added Array.find_last() and Array.count() | J08nY | |
2016-06-03 | Fix typo in http_client.h | J08nY | |
2016-06-03 | Expose ResourceImportMetadata::set_source_md5 for script | Geequlim | |
2016-06-03 | change invalid characters when get user data dir on Windows & Unix | volzhs | |
Can't create user data folder when project name has ``\ / : * ? " < > |`` characters on OS_Windows & OS_Unix. So, change it to ``-`` to be able to make folder. fixes #4928 and it's altanative to #4986. | |||
2016-06-01 | Ability to reload scripts on running game | Juan Linietsky | |