summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2018-01-24- Improves portability in joystick buttons enumAriel Manzur
- Fixes linking bug in modules split library
2018-01-24Merge pull request #15844 from letheed/better-error-msgRémi Verschelde
Make cyclic resource inclusion error message more helpful
2018-01-20fixed crash with StringBuilderkarroffel
When using a newly created StringBuilder then the as_string() method will crash when trying to free an allocated 0-sized chunk of memory. When 0 bytes get allocated with memnew_arr then a NULL pointer gets returned. When trying to free that pointer the programm will crash.
2018-01-18improves portability with some compilersAriel Manzur
2018-01-18Fix typos in code and docs with codespellRémi Verschelde
Using v1.11.0 from https://github.com/lucasdemarchi/codespell
2018-01-18Make cyclic resource inclusion error message more helpfulletheed
2018-01-17doc: Replace some more "val" with "value" + syncRémi Verschelde
2018-01-16Revert "Fix bad color to HTML conversion. Alpha channel was added before RGB."Rémi Verschelde
2018-01-15Filled tutorial field in most relevent classes.Juan Linietsky
Added tutorial display in doc.
2018-01-15Make sure PropertyHint matches in the VisualScript editor.K. S. Ernest (iFire) Lee
2018-01-13Fix String::itos/String::num_int64(INT64_MIN) output.bruvzg
2018-01-12get_target_fps and set_target_fps now both use an intPaul Joannon
2018-01-12fix set_stream_peer binding in PacketPeerPaul Joannon
2018-01-12Merge pull request #15611 from bojidar-bg/x-bind-more-propertiesRémi Verschelde
Bind many more properties to scripts
2018-01-12-Remove color operator clamping, which is unnecesary. Fixes #15184, fixes ↵Juan Linietsky
#14686. -Refresh progress bar less often, makes baking, exporting, etc. faster.
2018-01-12Bind many more properties to scriptsBojidar Marinov
Notable potentially breaking changes: - PROPERTY_USAGE_NOEDITOR is now PROPERTY_USAGE_STORAGE | PROPERTY_USAGE_NETWORK, without PROPERTY_USAGE_INTERNAL - Some properties were renamed, and sometimes even shadowed by new ones - New getter methods (some virtual) were added
2018-01-11Merge pull request #15531 from AndreaCatania/p2Juan Linietsky
Fixed crash on duplicate GIProbe baking
2018-01-11Fixed crash on duplicate GIProbe bakingAndreaCatania
2018-01-11Dont print error when loading resource from cacheRuslan Mustakov
2018-01-09Fix bad color to HTML conversion. Alpha channel was added befor RGB.robfram
2018-01-09Mono: Implement stack info for errors and exceptionsIgnacio Etcheverry
2018-01-08obsolete UndoRedo max_steps; no users identifiedTodd Ross
2018-01-08Merge pull request #15337 from ↵Rémi Verschelde
touilleMan/fix-classdb_get_method_list-without-instrospection Fix _ClassDB::get_method_list when instrospection is disabled
2018-01-07Merge pull request #15437 from GodotExplorer/pr-fix-15424Rémi Verschelde
Add null checking for paramaters in UndoRedo
2018-01-07Merge pull request #15382 from mrcdk/poolarrays_neq_fixRémi Verschelde
Fix NEQ operation for Arrays and Pool*Arrays
2018-01-07Merge pull request #15297 from poke1024/runner-limit-errsRémi Verschelde
Limit number of errors and messages sent by runner
2018-01-07Add null checking for paramaters in Undoredogeequlim
2018-01-06Removed PBM bitmap loader, added abiliy to importi mages as bitmap. Fixes #14828Juan Linietsky
2018-01-06Fix crash when using Image.resize() without calling Image.create() firstJerome67000
2018-01-06Fix NEQ operation between 2 different ArraysMrCdK
it was returning false if it found the same content in both arrays which isn't correct, it should return true when it finds different values
2018-01-05Print error if a resource can't load from script, fixes #15313Juan Linietsky
2018-01-05Add missing copyright headers and fix formattingRémi Verschelde
Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
2018-01-04Fix _ClassDB::get_method_list to returns only what's available when ↵Emmanuel Leblond
introspection is disabled
2018-01-04Change OS::initialize signature to return Error (fix segfault on x11)Emmanuel Leblond
2018-01-03found via cppcheck:firefly2442
remove code that will never run make definition and declaration names for parameters match change floats that were being set to bool values remove pointer that is never used
2018-01-04Merge pull request #15280 from poke1024/ringbuffer-cowRémi Verschelde
Avoid redundant copy-on-writes in RingBuffer
2018-01-03Revert "Add missing image format RGB10A2. Fixes #14964"Juan Linietsky
2018-01-03Avoid redundant copy-on-writes in RingBufferBernhard Liebl
2018-01-03Limit number of errors and messages sent by runnerBernhard Liebl
2018-01-03Merge pull request #15220 from ibrahn/variantcall-defargs-fixRémi Verschelde
fix VariantCall default parameter ordering
2018-01-03Merge pull request #15093 from poke1024/canvas-editor-selectRémi Verschelde
More exact picking for canvas editor
2018-01-03Merge pull request #15051 from binbitten/bug-fixesRémi Verschelde
Add missing image format RGB10A2. Fixes #14964
2018-01-03Merge pull request #15274 from GodotExplorer/debugger-fix-15238Rémi Verschelde
Fix a bug for debugger
2018-01-03Merge pull request #12814 from guilhermefelipecgs/add_hardware_custom_cursorRémi Verschelde
Custom hardware-accelerated mouse cursor
2018-01-03Fix crash while the debugger encode a freed object.Geequlim
2018-01-02Merge pull request #15083 from tagcup/spatial_rot_fixJuan Linietsky
Restore the behavior of Spatial rotations recently changed in c1153f5.
2018-01-02Merge pull request #14916 from poke1024/reduce-startup-timeRémi Verschelde
Ramp up remote debugger wait time
2018-01-01Update copyright statements to 2018Rémi Verschelde
Happy new year to the wonderful Godot community!
2018-01-01Merge pull request #14973 from poke1024/docs-word-selectionNoshyaar
Double-click word selection for RichTextLabel (i.e. docs)
2018-01-01Merge pull request #15091 from poke1024/fix-rect2-distance-toNoshyaar
Fix Rect2::distance_to() not returning 0