summaryrefslogtreecommitdiffstats
path: root/core
Commit message (Collapse)AuthorAgeFilesLines
* Fix style bug in event queueRémi Verschelde2016-06-281-1/+1
| | | | | Same fix as for 1f9812ab835e97ff07f4abba23a7915e04d306c9 Not sure if this code actually does anything though, `buffer_max_used` seems unused.
* fix bug in reporting of message queue sizeJuan Linietsky2016-06-271-1/+1
|
* Make most resources (save for packedscenes and scripts) reload if they ↵Juan Linietsky2016-06-273-4/+27
| | | | change on disk. Closes #4059.
* Properly deliver localized coordinates when passing gui events through ↵Juan Linietsky2016-06-272-1/+62
| | | | parents, closes #4215
* Cleaner way to enable ptrcallJuan Linietsky2016-06-261-0/+1
|
* -Fix crashes with thread_exit()Juan Linietsky2016-06-262-0/+15
| | | | -Added draft of C script API (still disabled and unused)
* Merge pull request #5412 from vnen/dvector-invert-bindRémi Verschelde2016-06-261-0/+14
|\ | | | | Expose *Array.invert() to script
| * Expose *Array.invert() to scriptGeorge Marques2016-06-251-0/+14
| | | | | | | | Properly solve #4601.
* | Added function to notify ScriptLanguage when a thread is created/freed, ↵Juan Linietsky2016-06-253-4/+29
|/ | | | allows scripts to allocate a stack there via TLS
* changed way to return referenceJuan Linietsky2016-06-241-2/+2
|
* Merge pull request #5380 from vnen/string-canvasitem-docsRémi Verschelde2016-06-243-0/+20
|\ | | | | Documentation for String and CanvasItem
| * Add sha256_buffer() function to StringGeorge Marques2016-06-233-0/+20
| |
* | Fix bug in String==StrRange comparisonGeorge Marques2016-06-241-5/+2
|/ | | | | | | It was comparing the StrRange with itself, always return true if both were the same length. Fix #3843
* Merge pull request #5201 from Hinsbart/quat_opRémi Verschelde2016-06-231-3/+12
|\ | | | | Expose missing Quaternion operators.
| * Expose missing Quaternion operators.Andreas Haas2016-06-211-3/+12
| | | | | | | | | | | | Scripts can now evaluate the following cases: - (quat * real) and (quat / real) - (quat + quat) and (quat - quat)
* | Fix typo to PTRCALL_ENABLED from previous commitRémi Verschelde2016-06-231-15/+8
| | | | | | | | And boo @reduz, those trailing spaces :p
* | Merge pull request #5338 from J08nY/array-bindingsRémi Verschelde2016-06-231-7/+42
|\ \ | | | | | | *Array bindings
| * | *Array: added bindings for other DVector methodsJ08nY2016-06-221-7/+42
| | | | | | | | | | | | | | | | | | - affects {RAW,INT,REAL,STRING,VECTOR2,VECTOR3,COLOR}_ARRAY - adds bindings for append(),append_array(),remove(),insert() - broadens #4245
* | | Improved binding system (ObjectTypeDB::bind_method) to be friendlier to ↵Juan Linietsky2016-06-228-5/+492
|/ / | | | | | | | | | | statically typed languages, should help in the Mono integration. Disabled by default.
* | Merge pull request #5333 from J08nY/signal-list-fixRémi Verschelde2016-06-221-8/+10
|\ \ | | | | | | Object: get_signal_connection_list fixed
| * | Object: get_signal_connection_list fixedJ08nY2016-06-211-8/+10
| | | | | | | | | | | | | | | now returns only the connections for the signal argument, as specified fixes #5329
* | | Fixed error using the same atlas rect for all images, closes #4139Juan Linietsky2016-06-211-0/+4
| | |
* | | Better support in ScriptLanguage for GC based scriptsJuan Linietsky2016-06-212-2/+15
| |/ |/|
* | Set default duration parameter of joystick vibration to 0.Andreas Haas2016-06-212-2/+2
| |
* | Merge pull request #5325 from vnen/doc-fileRémi Verschelde2016-06-211-0/+7
|\ \ | |/ |/| Add class reference for File class
| * Fix File.get_as_text() to return the whole fileGeorge Marques2016-06-211-0/+7
| | | | | | | | It was returning only from the cursor forward.
* | fix CanvasItem.get_global_transform() and CanvasItem.get_local_transform(), ↵Juan Linietsky2016-06-201-1/+1
| | | | | | | | closes #4075
* | fix bug decompressing bc texture, closes #4404Juan Linietsky2016-06-201-2/+17
| |
* | Add quotes to .tscn keys, solves #4366Juan Linietsky2016-06-201-1/+14
| |
* | added missing status, closes #4361Juan Linietsky2016-06-201-0/+1
|/
* Merge pull request #5196 from vnen/similarity-code-completionRémi Verschelde2016-06-203-0/+50
|\ | | | | Improve code completion search
| * Add similarity comparison to StringGeorge Marques2016-06-193-0/+50
| | | | | | | | | | Uses the Sorensen-Dice coefficient to calculate similarity. This also adds String.bigrams() as a convenience function needed by the comparison.
* | Property reporty base type when a function fails, fixes #4581 probably also ↵Juan Linietsky2016-06-202-5/+13
|/ | | | closes other issues
* Merge pull request #5283 from djrm/remove_printsRémi Verschelde2016-06-191-3/+0
|\ | | | | Removed lots of prints
| * Removed lots of printsDaniel J. Ramirez2016-06-181-3/+0
| |
* | Merge pull request #5281 from J08nY/useless-preprocessorRémi Verschelde2016-06-194-25/+5
|\ \ | | | | | | Fix #5263: Useless preprocessor condition
| * | Remove USE_QUAD_VECTORS unused checkJ08nY2016-06-192-17/+0
| | |
| * | Remove CHARTYPE_16BITS unused checksJ08nY2016-06-193-8/+5
| | | | | | | | | | | | fix #5263
* | | -Added trigger mode to tracks, useful for properties that work as triggers, ↵Juan Linietsky2016-06-191-0/+1
| |/ |/| | | | | | | | | such as playing a sample, an animation, etc. -Better interpolation of discrete tracks, fixes #4417
* | corrently parse utf8 from zip_io open, closes #1708Juan Linietsky2016-06-181-2/+5
|/ | | | this probably failed when exporting or opening android apk files too, should fix that too.
* Drop fully commented-out filesRémi Verschelde2016-06-182-153/+0
| | | | Part of #5272
* Drop empty .cpp files for header-only classesRémi Verschelde2016-06-184-117/+0
| | | | Part of #5272
* Drop empty files that are not used anywhereRémi Verschelde2016-06-188-265/+0
| | | | Part of #5272
* -Changed how Dir works so it's more user friendly, closes #4705Juan Linietsky2016-06-181-1/+36
|
* -made get_space_left() return values more homogenous, also for script, ↵Juan Linietsky2016-06-181-1/+1
| | | | converted to mb, closes #4617
* Fixed make_dir and make_dir_recursive erros, closes #1680 closes #1872Juan Linietsky2016-06-183-105/+37
|
* Add missing license headers in our source files (#5255)Rémi Verschelde2016-06-1815-2/+393
| | | Also removes a couple wrong Godot headers from third-party source files.
* Merge pull request #5250 from bojidar-bg/add-sha256Juan Linietsky2016-06-1710-7/+366
|\ | | | | Add sha256 to String and File/FileAccess.
| * Add sha256 to String and File/FileAccess.Bojidar Marinov2016-06-1710-7/+366
| | | | | | | | Probably does #4166
* | -added missing .inc filesJuan Linietsky2016-06-171-0/+1
| | | | | | | | | | | | -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