summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-03-05Merge pull request #26661 from neikeq/issue-17601Ignacio Etcheverry
Mono: Fix array field being assigned MonoArray** instead of MonoArray*
2019-03-05Merge pull request #26657 from marxin/fix-25641-ubsan-negative-valueRémi Verschelde
Fix #25641 by not shifting a negative value.
2019-03-05Merge pull request #26642 from DrMoriarty/check_cursor_lineRémi Verschelde
Check cursor line and column
2019-03-05Merge pull request #26626 from rluders/misleading-error-message-exportRémi Verschelde
Fixing misleading error message when trying to export
2019-03-05Merge pull request #26655 from merumelu/assetlib-video-overlayRémi Verschelde
AssetLib: convert video thumbnails to RGBA8
2019-03-05Merge pull request #26654 from merumelu/doc-makerst-varargRémi Verschelde
makerst: make vararg methods look the same as in editor help
2019-03-05Merge pull request #26643 from KoBeWi/readd_script_with_no_reselectRémi Verschelde
Fix attaching script after removing one
2019-03-05Mono: Fix array field being assigned MonoArray** instead of MonoArray*Ignacio Etcheverry
Fixes #17601
2019-03-05Fixes misleading error message when trying to exportRicardo Lüders
This patch fixes the misleading error message when users try to "export all" into an invalid destination path. Closes #26539
2019-03-05Fix #25641 by not shifting a negative value.marxin
2019-03-05AssetLib: convert video thumbnails to RGBAmerumelu
Image::blend_rect only works with images that have the same format.
2019-03-05makerst: make vararg methods look the same as in editor helpmerumelu
2019-03-05Merge pull request #26652 from YeldhamDev/filesys_dock_icon_fixRémi Verschelde
Fix FileSystem dock's item view button starting with the wrong icon
2019-03-05Fix FileSystem dock's item view button starting with the wrong iconMichael Alexsander Silva Dias
2019-03-05Merge pull request #26639 from YeldhamDev/tileeditor_coordnav_disableRémi Verschelde
Disable coord navigation buttons in TileSet editor when no texture is selected
2019-03-05Merge pull request #26638 from KoBeWi/fix_audio_stream_playerRémi Verschelde
Pause AudioStreamPlayer on SceneTree pause
2019-03-05Merge pull request #26636 from YeldhamDev/doc_todo_changesRémi Verschelde
Remove "TODO" instances in the docs
2019-03-05Merge pull request #26635 from bruvzg/js_preview_url_fixRémi Verschelde
Fix HTML5 quick preview URL
2019-03-05Merge pull request #26622 from pyrophone/TilesetPreviewFixRémi Verschelde
Fixed Tileset preview stretching textures
2019-03-05Merge pull request #26631 from YeldhamDev/filesys_fixesRémi Verschelde
Fix general issues with filesystem-related UI components in the editor
2019-03-05Allow to attach script when there's no 'selected node', but selection existsTomasz Chabora
2019-03-05Check cursor line and columnVasiliy Makarov
Added a trivial check if cursor.line and cursor.column are valid. Fix #26245
2019-03-05Fixed Tileset preview stretching texturesGio Aleman
2019-03-05Disable coord navigation buttons in TileSet editor when no texture is selectedMichael Alexsander Silva Dias
2019-03-05Pause AudioStreamPlayer on SceneTree pauseTomasz Chabora
2019-03-05Remove "TODO" instances in the docsMichael Alexsander Silva Dias
2019-03-05Fix HTML5 quick preview URLbruvzg
2019-03-05Fix general issues with filesystem-related UI components in the editorMichael Alexsander Silva Dias
2019-03-05Merge pull request #26629 from bojidar-bg/18386-object-callv-errorsRémi Verschelde
Print errors comming from callv
2019-03-05Use accumulated input by default, fixes #26395Juan Linietsky
2019-03-05Merge pull request #26630 from Xrayez/spatial-mouse-uncaptureRémi Verschelde
Ensure to disable freelook when leaving spatial editor
2019-03-05Fix typo in @marxin's nameRémi Verschelde
2019-03-05Ensure to disable freelook when leaving spatial editorAndrii Doroshenko (Xrayez)
Fixes and prevents the problem with mouse getting stuck in MOUSE_MODE_CAPTURED when switching to canvas item editor plugin by any means other than manually (with mouse).
2019-03-05Print errors comming from callvBojidar Marinov
Fixes #18386
2019-03-05Update AUTHORS and DONORS listRémi Verschelde
New contributors added to AUTHORS: @cart, @homer666, @KidRigger, @marxin, @swenner Thanks to all contributors and donors for making Godot possible! Updated .mailmap for a better output in `git shortlog -s -n -e --no-merges`. [ci skip]
2019-03-05Merge pull request #26619 from samgreen/ios_microphone_hotfixRémi Verschelde
Remove microphone from export options and distribution plist
2019-03-04Remove microphone from export options and distribution plistSam Green
2019-03-05Merge pull request #26614 from MarianoGnu/tileset_editorHein-Pieter van Braam
TileSet/TileMap: Decompose solid non-convex polygons into convexes.
2019-03-04TileSet/TileMap: Decompose solid non-convex polygons into convexes. Real fix ↵Mariano Suligoy
for #24003
2019-03-04Make sure ResurceLoader.exists works on imported files, fixes #23555Juan Linietsky
2019-03-05Merge pull request #26599 from MarianoGnu/fix_25817Rémi Verschelde
TileSetEditor: Expose to the user OneWayCollision+Margin properties.
2019-03-04Merge pull request #26612 from akien-mga/mkdir-system-data-pathRémi Verschelde
Fix creating editor data, config and cache paths
2019-03-04Ensure shader is not set if code did not changeJuan Linietsky
2019-03-04Fix creating editor data, config and cache pathsRémi Verschelde
We used to abort if the system-specific data folder (e.g. `~/.local` or `%APPDATA%`) is missing, but the next code chunk actually creates it with `make_dir_recursive` if missing. Fixes #26598.
2019-03-04Merge pull request #26587 from KoBeWi/undo_visibility_AABBRémi Verschelde
Add UndoRedo for Generate Visibility AABB (Particles)
2019-03-04Merge pull request #26607 from ptrojahn/translationescapeRémi Verschelde
Unescape translations in CSV importer
2019-03-04Merge pull request #26608 from dragmz/fix22231Rémi Verschelde
Calculate inputs count from arg types instead of names
2019-03-04calculate inputs count from arg types instead of namesMarcin Zawiejski
2019-03-04Some clean up to previous commit.Juan Linietsky
2019-03-04Unescape translations in CSV importerPaul Trojahn
Fixes #25361