Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-09-12 | Add expand/collapse all buttons for the "Errors" tab | Michael Alexsander Silva Dias | |
2018-09-12 | Merge pull request #21692 from Faless/sockets_rebase | Fabio Alessandrelli | |
New NetSocket interface with common BSD/Win implementation | |||
2018-09-12 | Merge pull request #21219 from AlexHolly/fix-textedit-shows-nothing | Rémi Verschelde | |
TextEdit update cache.size on ENTER_TREE | |||
2018-09-12 | Merge pull request #21997 from akien-mga/fix-script-name | Rémi Verschelde | |
Fix default script name in ScriptCreateDialog | |||
2018-09-12 | Unify StreamPeerTCP/TCP_Server with NetSocket API | Fabio Alessandrelli | |
2018-09-12 | Unify PacketPeerUDP using NetSocket | Fabio Alessandrelli | |
2018-09-12 | New NetSocket interface, BSD/Win implementation | Fabio Alessandrelli | |
Unified BSD and Winsock sockets into a single implementation of a generic NetSocket interface. This is some ground work for few network improvements: - Reuse as much code as possible between Posix and Windows. - Provide a single point of implementation for exotic sdks (consoles). - Provide platform agnostic StreamPeerTCP and PacketPeerUDP in core. - Implement connect for UDP allowing for DTLS implementation. | |||
2018-09-12 | Merge pull request #21877 from DualMatrix/richlabel | Rémi Verschelde | |
Fixed the remove_line function in richtextlabel. It was totally broken | |||
2018-09-12 | Merge pull request #21884 from RyanStein/feature-error-tree | Rémi Verschelde | |
Resurrect integrated error display for the Debugger. | |||
2018-09-12 | Merge pull request #21914 from hpvb/fix-21720 | Rémi Verschelde | |
When resizing an X11 window wait for the WM to process our request | |||
2018-09-12 | Merge pull request #21934 from groud/add_scale_mode | Rémi Verschelde | |
Add a scale mode to the 2D editor | |||
2018-09-12 | Merge pull request #21935 from goodyttoor/gltf_cubic | Rémi Verschelde | |
Fix cubic spline interpolation in glTF importer | |||
2018-09-12 | ENet wrapper properly detect disconnect on poll | Fabio Alessandrelli | |
Now PacketPeerUDP.get_available_packet_count() return -1 if the socket is in error state. | |||
2018-09-12 | Properly reset socket blocking state on close | Fabio Alessandrelli | |
2018-09-12 | Fix default script name in ScriptCreateDialog | Rémi Verschelde | |
It would default either to '.gd' when created from the script editor, or to 'res:///NodeName.gd' (three '/') when created from the scene tree dock. | |||
2018-09-12 | Merge pull request #21878 from RyanStein/bugfix-14400 | Rémi Verschelde | |
Make `_sort_list_on_update` true before opening files, fixes 14400 | |||
2018-09-12 | Merge pull request #21984 from groud/fix_2D_selection | Rémi Verschelde | |
Fix 2D selection | |||
2018-09-12 | Merge pull request #21910 from hpvb/fix-8145-x11 | Rémi Verschelde | |
Update X11 global mouse position at startup | |||
2018-09-12 | Merge pull request #21913 from DualMatrix/tween_remove_all | Rémi Verschelde | |
Fixed calling start() after remove_all() on tween not working | |||
2018-09-12 | Merge pull request #21985 from Calinou/fix-osx-open-editor-path | Rémi Verschelde | |
Fix project and editor data paths not being opened correctly on macOS | |||
2018-09-12 | Merge pull request #21705 from KellyThomas/tree-create-item | Rémi Verschelde | |
Change return value of Tree.create_item() from Object to TreeItem | |||
2018-09-12 | Merge pull request #21654 from Calinou/textureprogress-transparent-tint | Rémi Verschelde | |
Allow transparent colors in TextureProgress tint properties | |||
2018-09-12 | Merge pull request #21988 from KellyThomas/array-invert-2 | Rémi Verschelde | |
Standardize documentation for the pool arrays' invert methods | |||
2018-09-12 | Merge pull request #21755 from akien-mga/particles-init-velocity | Rémi Verschelde | |
Particles: Reset default velocity to 0, allow negative values | |||
2018-09-12 | Merge pull request #21780 from akien-mga/animatedsprite-deprecated | Rémi Verschelde | |
Drop deprecated compatibility methods from AnimatedSprite | |||
2018-09-12 | Merge pull request #21978 from akien-mga/include-core-absolute | Rémi Verschelde | |
Make core/ includes absolute, remove subfolders from include path | |||
2018-09-12 | Make core/ includes absolute, remove subfolders from include path | Rémi Verschelde | |
This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes. | |||
2018-09-12 | Merge pull request #21990 from neikeq/howwouldyounamethisbranch | Ignacio Etcheverry | |
C#/Mono fixes and enhancements | |||
2018-09-12 | C#: Fix cs_files glue mismatch bug | Ignacio Etcheverry | |
2018-09-12 | Fix/workaround for issue #21667 | Ignacio Etcheverry | |
When a Reference managed instance is garbage collected and its finalizer is called, it could happen that the native instance is referenced once again before the finalizer can unreference and memdelete it. The workaround is to create a new managed instance when this happens (at least for now). | |||
2018-09-12 | Add some mono root hint dirs for OSX | Ignacio Etcheverry | |
Fixes #13355 | |||
2018-09-12 | Allow special characters in C# glue files | Ignacio Etcheverry | |
Fixes #21139 - Surround the generated file modules/mono/glue/cs_compressed.gen.h with ifdef TOOLS_ENABLED | |||
2018-09-12 | Cleanup of c# api files and bindings generator | Ignacio Etcheverry | |
- We no longer generate RID and NodePath C# classes. Both will be maintained manually. - We no longer generate C# declarations and runtime registration of internal calls for the following classes: RID, NodePath, String, GD, SignalAwaiter and Godot.Object (partial base). - We no longer auto-generate the base members of Godot.Object. They will be maintained manually as a partial class. This makes it easier to maintain these C# classes and their internal calls, as well as the bindings generator which no longer generates C# classes that don't derive from Godot Object, and it no longer generates the Godot.Object base members (which where unreadable in the bindings generator code). - Added missing 'RID(Object from)' constructor to the RID C# class. - Replaced MONO_GLUE_DISABLED constant macro with MONO_GLUE_ENABLED. - Add sources in module/mono/glue even if glue is disabled, but surround glue files with ifdef MONO_GLUE_ENABLED. | |||
2018-09-12 | Standardize documentation for the pool arrays' invert methods | Kelly Thomas | |
2018-09-11 | Fix 2D selection | groud | |
2018-09-11 | Fix project and editor data paths not being opened correctly on macOS | Hugo Locurcio | |
This closes #21904. | |||
2018-09-11 | Fix mistake in previous commit | Rémi Verschelde | |
2018-09-11 | UPnP: Fix includes of thirdparty headers | Rémi Verschelde | |
2018-09-11 | Add a scale mode to the 2D editor | groud | |
2018-09-11 | Merge pull request #21974 from akien-mga/drop-property-editor | Rémi Verschelde | |
Replace last occurrences of PropertyEditor and drop its code | |||
2018-09-11 | Drop obsolete PropertyEditor and SectionedPropertyEditor code | Rémi Verschelde | |
Replaced by EditorInspector. | |||
2018-09-11 | Replace last occurrences of PropertyEditor by EditorInspector | Rémi Verschelde | |
Updates the following plugins: - ConnectionsDialog - ScriptEditorDebugger - ItemListEditorPlugin Also drop now unnecessary compatibility methods. | |||
2018-09-11 | Fixed calling start() emmediately after remove_all() on tween not wroking | DualMatrix | |
Fixed calling start() emmediately after remove_all() on tween not wroking Fixes #19901 | |||
2018-09-11 | Merge pull request #21971 from scayze/window_title_update | Rémi Verschelde | |
Update window title when switching scenes | |||
2018-09-11 | update window title when switching scenes | Manuel Strey | |
2018-09-11 | Merge pull request #21967 from godotengine/revert-21831-fix_13849 | Rémi Verschelde | |
Revert "Fix selection of spatial nodes after selecting a non-spatial one." | |||
2018-09-11 | Revert "Fix selection of spatial nodes after selecting a non-spatial one." | Rémi Verschelde | |
2018-09-11 | doc: Sync classref with current source | Rémi Verschelde | |
2018-09-11 | Update AUTHORS and DONORS list | Rémi Verschelde | |
New contributors added to AUTHORS: @aaronfranke, @capnm, @elasota Thanks to all contributors and donors for making Godot possible! [ci skip] | |||
2018-09-10 | Merge pull request #21822 from aaronfranke/mono-pascal | Ignacio Etcheverry | |
[Mono] Various style changes and naming standardization |