summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2016-07-14Fix binding of File::get_sha256()George Marques
Fix #5698
2016-07-10Merge pull request #5559 from Hinsbart/connected_joystickspunto-
Input: add get_connected_joysticks() method.
2016-07-10Merge pull request #5443 from samuelgrigolato/iterate-string-in-gdscriptJuan Linietsky
Add support to String type in gdscript iteration
2016-07-10Merge pull request #5525 from SuperUserNameMan/window_get_latin_kb_variantJuan Linietsky
windows get_latin_keyboard_variant() implementation and gdscript binding, #5503
2016-07-09Merge pull request #5589 from akien-mga/pr-unused-varRémi Verschelde
Removing some more unused vars and dead code
2016-07-08classref: Fix arg name for is_action_pressed/releasedRémi Verschelde
Also position TEXTURE_SPHERE constant properly.
2016-07-08Remove unused variables (fourth pass) + dead codeRémi Verschelde
Also fix a potential regression from 3fcb9b1ec179b99d979d4cfea9b5e3c80e4a3e33.
2016-07-05Make sure builtin types' constants remain in orderGeorge Marques
This adds a list of constants for VariantCall to make sure the order of register is kept when showing in the editor help and in the documentation. This also remove the sorting of constants from the doctool, so it keeps the natural order in classes.xml.
2016-07-05Fixed HQ2x compiler warningsJ08nY
2016-07-05Input: add get_connected_joysticks() method.Andreas Haas
fixes #5465
2016-07-03windows get_latin_keyboard_variant() implementation and gdscript bindingSuperUserNameMan
2016-07-02Merge pull request #5522 from neikeq/pr-issue-5519Juan Linietsky
Prettier str() for arrays
2016-07-02Prettier str() for arraysIgnacio Etcheverry
2016-06-29Do a second stage remap, so it considers translation first, atlas second, ↵Juan Linietsky
closes #5147
2016-06-28Fix style bug in event queueRémi Verschelde
Same fix as for 1f9812ab835e97ff07f4abba23a7915e04d306c9 Not sure if this code actually does anything though, `buffer_max_used` seems unused.
2016-06-27fix bug in reporting of message queue sizeJuan Linietsky
2016-06-27Make most resources (save for packedscenes and scripts) reload if they ↵Juan Linietsky
change on disk. Closes #4059.
2016-06-27Properly deliver localized coordinates when passing gui events through ↵Juan Linietsky
parents, closes #4215
2016-06-26Add support to String type in gdscript iteration. #5188Samuel Grigolato
2016-06-26Cleaner way to enable ptrcallJuan Linietsky
2016-06-26-Fix crashes with thread_exit()Juan Linietsky
-Added draft of C script API (still disabled and unused)
2016-06-26Merge pull request #5412 from vnen/dvector-invert-bindRémi Verschelde
Expose *Array.invert() to script
2016-06-25Expose *Array.invert() to scriptGeorge Marques
Properly solve #4601.
2016-06-25Added function to notify ScriptLanguage when a thread is created/freed, ↵Juan Linietsky
allows scripts to allocate a stack there via TLS
2016-06-24changed way to return referenceJuan Linietsky
2016-06-24Merge pull request #5380 from vnen/string-canvasitem-docsRémi Verschelde
Documentation for String and CanvasItem
2016-06-24Fix bug in String==StrRange comparisonGeorge Marques
It was comparing the StrRange with itself, always return true if both were the same length. Fix #3843
2016-06-23Add sha256_buffer() function to StringGeorge Marques
2016-06-23Merge pull request #5201 from Hinsbart/quat_opRémi Verschelde
Expose missing Quaternion operators.
2016-06-23Fix typo to PTRCALL_ENABLED from previous commitRémi Verschelde
And boo @reduz, those trailing spaces :p
2016-06-23Merge pull request #5338 from J08nY/array-bindingsRémi Verschelde
*Array bindings
2016-06-22Improved binding system (ObjectTypeDB::bind_method) to be friendlier to ↵Juan Linietsky
statically typed languages, should help in the Mono integration. Disabled by default.
2016-06-22*Array: added bindings for other DVector methodsJ08nY
- affects {RAW,INT,REAL,STRING,VECTOR2,VECTOR3,COLOR}_ARRAY - adds bindings for append(),append_array(),remove(),insert() - broadens #4245
2016-06-22Merge pull request #5333 from J08nY/signal-list-fixRémi Verschelde
Object: get_signal_connection_list fixed
2016-06-21Fixed error using the same atlas rect for all images, closes #4139Juan Linietsky
2016-06-21Better support in ScriptLanguage for GC based scriptsJuan Linietsky
2016-06-21Expose missing Quaternion operators.Andreas Haas
Scripts can now evaluate the following cases: - (quat * real) and (quat / real) - (quat + quat) and (quat - quat)
2016-06-21Set default duration parameter of joystick vibration to 0.Andreas Haas
2016-06-21Merge pull request #5325 from vnen/doc-fileRémi Verschelde
Add class reference for File class
2016-06-21Fix File.get_as_text() to return the whole fileGeorge Marques
It was returning only from the cursor forward.
2016-06-21Object: get_signal_connection_list fixedJ08nY
now returns only the connections for the signal argument, as specified fixes #5329
2016-06-20fix CanvasItem.get_global_transform() and CanvasItem.get_local_transform(), ↵Juan Linietsky
closes #4075
2016-06-20fix bug decompressing bc texture, closes #4404Juan Linietsky
2016-06-20Add quotes to .tscn keys, solves #4366Juan Linietsky
2016-06-20added missing status, closes #4361Juan Linietsky
2016-06-20Merge pull request #5196 from vnen/similarity-code-completionRémi Verschelde
Improve code completion search
2016-06-20Property reporty base type when a function fails, fixes #4581 probably also ↵Juan Linietsky
closes other issues
2016-06-19Add similarity comparison to StringGeorge Marques
Uses the Sorensen-Dice coefficient to calculate similarity. This also adds String.bigrams() as a convenience function needed by the comparison.
2016-06-19Merge pull request #5283 from djrm/remove_printsRémi Verschelde
Removed lots of prints
2016-06-19Merge pull request #5281 from J08nY/useless-preprocessorRémi Verschelde
Fix #5263: Useless preprocessor condition