| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix style bug in event queue | Rémi Verschelde | 2016-06-28 | 1 | -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 size | Juan Linietsky | 2016-06-27 | 1 | -1/+1 |
| | | |||||
| * | Make most resources (save for packedscenes and scripts) reload if they ↵ | Juan Linietsky | 2016-06-27 | 3 | -4/+27 |
| | | | | | change on disk. Closes #4059. | ||||
| * | Properly deliver localized coordinates when passing gui events through ↵ | Juan Linietsky | 2016-06-27 | 2 | -1/+62 |
| | | | | | parents, closes #4215 | ||||
| * | Cleaner way to enable ptrcall | Juan Linietsky | 2016-06-26 | 1 | -0/+1 |
| | | |||||
| * | -Fix crashes with thread_exit() | Juan Linietsky | 2016-06-26 | 2 | -0/+15 |
| | | | | | -Added draft of C script API (still disabled and unused) | ||||
| * | Merge pull request #5412 from vnen/dvector-invert-bind | Rémi Verschelde | 2016-06-26 | 1 | -0/+14 |
| |\ | | | | | Expose *Array.invert() to script | ||||
| | * | Expose *Array.invert() to script | George Marques | 2016-06-25 | 1 | -0/+14 |
| | | | | | | | | | Properly solve #4601. | ||||
| * | | Added function to notify ScriptLanguage when a thread is created/freed, ↵ | Juan Linietsky | 2016-06-25 | 3 | -4/+29 |
| |/ | | | | allows scripts to allocate a stack there via TLS | ||||
| * | changed way to return reference | Juan Linietsky | 2016-06-24 | 1 | -2/+2 |
| | | |||||
| * | Merge pull request #5380 from vnen/string-canvasitem-docs | Rémi Verschelde | 2016-06-24 | 3 | -0/+20 |
| |\ | | | | | Documentation for String and CanvasItem | ||||
| | * | Add sha256_buffer() function to String | George Marques | 2016-06-23 | 3 | -0/+20 |
| | | | |||||
| * | | Fix bug in String==StrRange comparison | George Marques | 2016-06-24 | 1 | -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_op | Rémi Verschelde | 2016-06-23 | 1 | -3/+12 |
| |\ | | | | | Expose missing Quaternion operators. | ||||
| | * | Expose missing Quaternion operators. | Andreas Haas | 2016-06-21 | 1 | -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 commit | Rémi Verschelde | 2016-06-23 | 1 | -15/+8 |
| | | | | | | | | | And boo @reduz, those trailing spaces :p | ||||
| * | | Merge pull request #5338 from J08nY/array-bindings | Rémi Verschelde | 2016-06-23 | 1 | -7/+42 |
| |\ \ | | | | | | | *Array bindings | ||||
| | * | | *Array: added bindings for other DVector methods | J08nY | 2016-06-22 | 1 | -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 Linietsky | 2016-06-22 | 8 | -5/+492 |
| |/ / | | | | | | | | | | | statically typed languages, should help in the Mono integration. Disabled by default. | ||||
| * | | Merge pull request #5333 from J08nY/signal-list-fix | Rémi Verschelde | 2016-06-22 | 1 | -8/+10 |
| |\ \ | | | | | | | Object: get_signal_connection_list fixed | ||||
| | * | | Object: get_signal_connection_list fixed | J08nY | 2016-06-21 | 1 | -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 #4139 | Juan Linietsky | 2016-06-21 | 1 | -0/+4 |
| | | | | |||||
| * | | | Better support in ScriptLanguage for GC based scripts | Juan Linietsky | 2016-06-21 | 2 | -2/+15 |
| | |/ |/| | |||||
| * | | Set default duration parameter of joystick vibration to 0. | Andreas Haas | 2016-06-21 | 2 | -2/+2 |
| | | | |||||
| * | | Merge pull request #5325 from vnen/doc-file | Rémi Verschelde | 2016-06-21 | 1 | -0/+7 |
| |\ \ | |/ |/| | Add class reference for File class | ||||
| | * | Fix File.get_as_text() to return the whole file | George Marques | 2016-06-21 | 1 | -0/+7 |
| | | | | | | | | | It was returning only from the cursor forward. | ||||
| * | | fix CanvasItem.get_global_transform() and CanvasItem.get_local_transform(), ↵ | Juan Linietsky | 2016-06-20 | 1 | -1/+1 |
| | | | | | | | | | closes #4075 | ||||
| * | | fix bug decompressing bc texture, closes #4404 | Juan Linietsky | 2016-06-20 | 1 | -2/+17 |
| | | | |||||
| * | | Add quotes to .tscn keys, solves #4366 | Juan Linietsky | 2016-06-20 | 1 | -1/+14 |
| | | | |||||
| * | | added missing status, closes #4361 | Juan Linietsky | 2016-06-20 | 1 | -0/+1 |
| |/ | |||||
| * | Merge pull request #5196 from vnen/similarity-code-completion | Rémi Verschelde | 2016-06-20 | 3 | -0/+50 |
| |\ | | | | | Improve code completion search | ||||
| | * | Add similarity comparison to String | George Marques | 2016-06-19 | 3 | -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 Linietsky | 2016-06-20 | 2 | -5/+13 |
| |/ | | | | closes other issues | ||||
| * | Merge pull request #5283 from djrm/remove_prints | Rémi Verschelde | 2016-06-19 | 1 | -3/+0 |
| |\ | | | | | Removed lots of prints | ||||
| | * | Removed lots of prints | Daniel J. Ramirez | 2016-06-18 | 1 | -3/+0 |
| | | | |||||
| * | | Merge pull request #5281 from J08nY/useless-preprocessor | Rémi Verschelde | 2016-06-19 | 4 | -25/+5 |
| |\ \ | | | | | | | Fix #5263: Useless preprocessor condition | ||||
| | * | | Remove USE_QUAD_VECTORS unused check | J08nY | 2016-06-19 | 2 | -17/+0 |
| | | | | |||||
| | * | | Remove CHARTYPE_16BITS unused checks | J08nY | 2016-06-19 | 3 | -8/+5 |
| | | | | | | | | | | | | | fix #5263 | ||||
| * | | | -Added trigger mode to tracks, useful for properties that work as triggers, ↵ | Juan Linietsky | 2016-06-19 | 1 | -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 #1708 | Juan Linietsky | 2016-06-18 | 1 | -2/+5 |
| |/ | | | | this probably failed when exporting or opening android apk files too, should fix that too. | ||||
| * | Drop fully commented-out files | Rémi Verschelde | 2016-06-18 | 2 | -153/+0 |
| | | | | | Part of #5272 | ||||
| * | Drop empty .cpp files for header-only classes | Rémi Verschelde | 2016-06-18 | 4 | -117/+0 |
| | | | | | Part of #5272 | ||||
| * | Drop empty files that are not used anywhere | Rémi Verschelde | 2016-06-18 | 8 | -265/+0 |
| | | | | | Part of #5272 | ||||
| * | -Changed how Dir works so it's more user friendly, closes #4705 | Juan Linietsky | 2016-06-18 | 1 | -1/+36 |
| | | |||||
| * | -made get_space_left() return values more homogenous, also for script, ↵ | Juan Linietsky | 2016-06-18 | 1 | -1/+1 |
| | | | | | converted to mb, closes #4617 | ||||
| * | Fixed make_dir and make_dir_recursive erros, closes #1680 closes #1872 | Juan Linietsky | 2016-06-18 | 3 | -105/+37 |
| | | |||||
| * | Add missing license headers in our source files (#5255) | Rémi Verschelde | 2016-06-18 | 15 | -2/+393 |
| | | | | Also removes a couple wrong Godot headers from third-party source files. | ||||
| * | Merge pull request #5250 from bojidar-bg/add-sha256 | Juan Linietsky | 2016-06-17 | 10 | -7/+366 |
| |\ | | | | | Add sha256 to String and File/FileAccess. | ||||
| | * | Add sha256 to String and File/FileAccess. | Bojidar Marinov | 2016-06-17 | 10 | -7/+366 |
| | | | | | | | | | Probably does #4166 | ||||
| * | | -added missing .inc files | Juan Linietsky | 2016-06-17 | 1 | -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 | ||||
