summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-02-14Merge pull request #16659 from vnen/plugin_orderRémi Verschelde
Expose priority and order for custom import plugins
2018-02-14Merge pull request #16654 from bdero/bdero/elite-afterglow-padsRémi Verschelde
Add Xbox One Elite and Xbox 360 Afterglow pads (Linux)
2018-02-14Merge pull request #16648 from marcelofg55/center_windowRémi Verschelde
Added OS::center_window to center the window precisely on desktop platforms
2018-02-13Merge pull request #16667 from vnen/remove-container-controlRémi Verschelde
Add a function to remove controls from containers
2018-02-13Merge pull request #16669 from akien-mga/fix-apk-expansionRémi Verschelde
Fix broken APK expansion due to missed option renames
2018-02-13Fix broken APK expansion due to missed option renamesRémi Verschelde
Command line options were refactored for 3.0 to follow the common usage of double-dashed long options, but `--main-pack` went through the cracks. Fixes #16533.
2018-02-13Add a function to remove controls from containersGeorge Marques
Closes #5968
2018-02-13Merge pull request #16422 from synasius/fixed-line-edit-text-changed-signalRémi Verschelde
Fixed #15082: line edit emits two "text_changed" signals when pasting while text is selected
2018-02-13Merge pull request #16518 from Paulb23/fix_members_overview_offsetRémi Verschelde
Fixed members overview not scrolling to correct line
2018-02-13Remove unused variable from plugin settings updateGeorge Marques
Fix #16199
2018-02-13Merge pull request #16551 from sctincman/xbuild_fallback-fixRémi Verschelde
Add and use mono build variables with cloned environment.
2018-02-13Merge pull request #16474 from robfram/fix-compile-freebsd-websocketRémi Verschelde
Fix compilation errors with FreeBSD and libwebsocket
2018-02-13Add FreeBSD and OpenBSD #defines to skip LWS_HAVE_SYS_PRCTL_Hrobfram
compiling libwebsocket, as it would fail otherwise. Fix #16472.
2018-02-13Merge pull request #16463 from Noshyaar/pr1Rémi Verschelde
3DEditor: fix selecting node in viewport not update inspector
2018-02-13Merge pull request #16433 from Calinou/remove-assetlib-debugging-printsRémi Verschelde
Remove debugging prints related to the asset library
2018-02-13Merge pull request #16432 from Ovnuniarchos/masterRémi Verschelde
SpinBoxes calculate correctly their width before first redraw.
2018-02-13Merge pull request #16424 from AndreaCatania/phyjRémi Verschelde
Added physics API in order to enable/disable collisions between rigidbody attached to a joint with bullet physics bullet
2018-02-13Merge pull request #16383 from binbitten/issue_16335Rémi Verschelde
Fix spaces and quotes in external editor flags
2018-02-13Expose priority and order for custom import pluginsGeorge Marques
2018-02-13Merge pull request #16410 from bcr3ative/issue_16406Rémi Verschelde
Fix timeline track name overlapping keyframe area
2018-02-13Merge pull request #16402 from Calinou/fix-camera-gizmoRémi Verschelde
Draw the Camera gizmo more accurately
2018-02-13Merge pull request #16401 from YeldhamDev/json_example_fixRémi Verschelde
Fixed wrong example in JSONParseResult
2018-02-13Merge pull request #16374 from ianb96/drop_at_mouseRémi Verschelde
Drop path text at mouse pos
2018-02-13Merge pull request #16373 from ianb96/scene_shortcut_disableRémi Verschelde
Disable scene tree shortcuts when in a text field
2018-02-13Merge pull request #16321 from JFonS/masterRémi Verschelde
Fix gizmo solid box mesh being added twice
2018-02-13Add Xbox One Elite and Xbox 360 Afterglow padsBrandon DeRosier
2018-02-12Added OS::center_window to center the window precisely on desktop platformsMarcelo Fernandez
2018-02-12Merge pull request #16499 from sudoio/masterPoommetee Ketson
Deselect text when jumping to function
2018-02-12Merge pull request #16332 from YeldhamDev/capitalize_view_menuRémi Verschelde
Capitalized "View" menu options
2018-02-12Merge pull request #16306 from mhilbrunner/mhilbrunner-docs-json-keyorderRémi Verschelde
[DOCS] parse_json: Objects do not keep key order
2018-02-12Merge pull request #15525 from YeldhamDev/recent_scenes_changesRémi Verschelde
Small changes to the "Recent Scenes" menu
2018-02-12Merge pull request #15499 from YeldhamDev/recent_scripts_fixRémi Verschelde
Changes for the "Recent Scripts" menu
2018-02-12Merge pull request #16328 from bcr3ative/issue_16278Rémi Verschelde
Fix UX with project settings search functionality
2018-02-11Merge pull request #16558 from tilpner/gdnative-variant-new-boolThomas Herzog
gdnative_api.json: Change argument name to r_dest
2018-02-11gdnative_api.json: Change argument name to r_desttilpner
This reflects its usage as an output argument, consistent with the other godot_variant_new functions
2018-02-10Add and use mono build variables with cloned environment.Jonathan Tinkham
2018-02-10Merge pull request #16539 from eska014/gdnative-macwarnThomas Herzog
Fix GDNATIVE_API_INIT() warning about sign mismatch
2018-02-10Fix GDNATIVE_API_INIT() warning about sign mismatchLeon Krause
2018-02-09Fixed members overview not scrolling to correct linePaulb23
2018-02-09Merge pull request #16514 from karroffel/nativescript-extension-1Thomas Herzog
add NativeScript extension 1
2018-02-09add initial NativeScript 1.1 extensionkarroffel
This commit adds new functionality to NativeScript, namely: - ability to set and get documentation for classes, methods, signals and properties - ability to set names and type information to method arguments - ability to set and get type tags for nativescripts - ability to register instance binding data management functions - ability to use instance binding data
2018-02-09generate proper API structs for GDNative extension extensionskarroffel
The GDNative C API gets passed to libraries in a struct of function pointers. To provide stable binary compatibility, each extension not part of the core API is separated into its own sub-struct. These structs aren't meant to be changed in order to keep binary compatibility. In case of an API extension, the structs include a `next` pointer which can point to a new struct with additional function pointers. Godot's build system generates the API structs automatically at build time, but so far there has no support for the mentioned `next` pointers. This commit changes the API struct generation in such a way that code that used previous headers will compile without problem with the new headers. The new extension-extensions (weird name, but that's what it is) get generated recursively and include the version in the struct-name.
2018-02-08Fix #16479 (deselect text when jumping to function)Artem Varaksa
2018-02-07Merge pull request #15899 from karroffel/stringbuffer-template-argRémi Verschelde
add template argument for size in StringBuffer
2018-02-073DEditor: fix selecting node in viewport not update inspectorPoommetee Ketson
2018-02-07Merge pull request #16460 from ronroniv/patch-1Poommetee Ketson
Update an outdated method name in error message
2018-02-07Update an outdated method name in error messageronroniv
set_enable_monitoring -> set_monitoring
2018-02-07Merge pull request #14888 from Faless/websocketRémi Verschelde
Websocket module
2018-02-06Travis builds use builtin_openssl for X11Fabio Alessandrelli
1.0.2 is now the minimum version of openssl to build against
2018-02-06Relicense module to the wondeful Godot community!Fabio Alessandrelli