summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2018-01-11Merge pull request #15580 from karroffel/gdnative-api-fixesRémi Verschelde
[GDNative] updates to string API and const fixes
2018-01-11[GDNative] updates to string API and const fixeskarroffel
2018-01-10Merge pull request #15537 from ↵Rémi Verschelde
PJB3005/18-01-09-fix-color-string-constructor-mono Fixes Mono color creation from string being 0-255 instead of 0-1.
2018-01-10Fixes Mono color creation from string.Pieter-Jan Briers
Fixes #15468 Also improves the error messages if the string isn't hex, because saying that the color value is negative is just a side effect of the implementation and tells you nothing.
2018-01-10Merge pull request #15541 from neikeq/look-all-i-want-to-tell-you-isRémi Verschelde
Mono: Some fixes for #15463
2018-01-09Fix warning when editor resource preview try to read pluginscript resourceEmmanuel Leblond
2018-01-09Mono: Some fixes for #15463Ignacio Etcheverry
2018-01-09Fix crash in pluginscript complete_codeEmmanuel Leblond
2018-01-09Merge pull request #15463 from neikeq/the-stack-frame-madnessRémi Verschelde
Mono: Implement stack info for errors and exceptions
2018-01-09Mono: Fix iteration order of object types when generating bindingsIgnacio Etcheverry
2018-01-09External editor fixesIgnacio Etcheverry
- Fix VS Code opening on the previous line to the desired one. - Fix running MonoDevelop without the line and column parameters. - Fix `ScriptEditor::_goto_script_line` not working with language overriden external editors.
2018-01-09Mono: Implement stack info for errors and exceptionsIgnacio Etcheverry
2018-01-08Merge pull request #15490 from AndreaCatania/kinRémi Verschelde
Fixed #15417 kinematics char jumping
2018-01-08Removed useless error print on bullet shapesAndreaCatania
2018-01-08Fixed Bullet collision shapes scaleAndreaCatania
2018-01-08Merge pull request #15426 from poke1024/fix15409Rémi Verschelde
Fixes RegEx::sub injecting null character (issue 15409)
2018-01-07Fixes RegEx::sub injecting null character (issue 15409)Bernhard Liebl
2018-01-07doc: Sync classref with current sourceRémi Verschelde
2018-01-06[GDNative] fix reloading of non-reloadable librarieskarroffel
2018-01-06Removed PBM bitmap loader, added abiliy to importi mages as bitmap. Fixes #14828Juan Linietsky
2018-01-06[GDNative] added reload propertykarroffel
2018-01-06Fix build of GDMonoFieldRémi Verschelde
Closes #15385.
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-04Merge pull request #15346 from neikeq/properties-are-overratedRémi Verschelde
Mono: Add properties support in scripts
2018-01-04Mono: Add properties support in scriptsIgnacio Etcheverry
2018-01-04Disable lto for gdnative wrapperEmmanuel Leblond
2018-01-04Merge pull request #15326 from robfram/issue-15303Rémi Verschelde
Fix Issue#15303 FreeBSD compilation error in thekla_atlas
2018-01-04Fix Issue#15303 FreeBSD compilation error in thekla_atlas due to wrong ↵robfram
definition of NV_OS_LINUX instead NV_OS_FREEBSD
2018-01-04Merge pull request #13257 from AndreaCatania/masterRémi Verschelde
Fixed kinematic movement stuck, Changed how shape scale works.
2018-01-04Merge pull request #15223 from ibrahn/ogg-data-leak-fixRémi Verschelde
free associated audio data on AudioStreamOGGVorbis destruction
2018-01-03doc: Sync classref with current sourceRémi Verschelde
2018-01-03Remove too verbose printf statements from VideoStreamTheorasamvila
2018-01-03Merge pull request #15114 from capnm/fix-bad-lightmap-crashRémi Verschelde
Avoid thekla_unwrap crash
2018-01-03Merge pull request #15120 from AndreaCatania/gridmRémi Verschelde
Added layer and mask in the gridmap node
2018-01-03Merge pull request #15089 from poke1024/funcref-warnRémi Verschelde
Warn about funcref creation
2018-01-01Merge pull request #15246 from vnen/uwp-gdnativeGeorge Marques
Make GDNative DLLs work on UWP
2018-01-01Make GDNative DLLs work on UWPGeorge Marques
2018-01-01Update copyright statements to 2018Rémi Verschelde
Happy new year to the wonderful Godot community!
2018-01-01Merge pull request #15232 from neikeq/issue-15138-and-moreRémi Verschelde
Mono fixes
2018-01-01Mono: Change BindingsGenerator singleton to avoid StringName leaksIgnacio Etcheverry
2018-01-01Mono: Script lifetime fixesIgnacio Etcheverry
- alloc_language_binding: Use strong GC handle as well for references. Fixes #15138 - Set the native instance field of Godot.Object to IntPtr.Zero when it's freed. - Create weak handles without tracking resurrection (that was causing trouble). This means we have to call notification predelete before queueing a native Object for deletion, and use the MonoObject* passed by the finalizer because the weak GC handle target will return NULL at this point.
2017-12-31Merge pull request #15136 from neikeq/issue-15128Ignacio Etcheverry
Mono: Bindings no longer relie on DocData for accessors
2017-12-31free associated audio data on AudioStreamOGGVorbis destructionIbrahn Sahir
2017-12-30fix typo in switch statementfirefly2442
2017-12-31Avoid thekla_unwrap crashMartin Capitanio
Godot crashed here sometimes by generating the uv map.
2017-12-29Mono: Bindings no longer relie on DocData for accessorsIgnacio Etcheverry
2017-12-28Added layer and mask in the gridmap nodeAndreaCatania
2017-12-27Merge pull request #14996 from neikeq/enums-monoNoshyaar
Mono: Make the bindings generator output enums
2017-12-26Warn about funcref creationBernhard Liebl
2017-12-24Merge pull request #14997 from neikeq/issue-14988Ignacio Etcheverry
Marshal NULL MonoString* as empty Godot string