summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-10-06Merge pull request #22796 from ↵Rémi Verschelde
KoderaSoftwareUnlimited/fix-segfault-mouse-move-related Reverts warning fix on release builds that caused segfault in release build
2018-10-06Merge pull request #22742 from YeldhamDev/textedit_margin_scrollRémi Verschelde
Fix TextEdit margin start spacing with two scrollbars
2018-10-06Revert cause of #22794Mariusz Chwalba
2018-10-06Merge pull request #22783 from eska014/html5-warningsRémi Verschelde
Fix warnings in HTML5 build outside platform files
2018-10-06Merge pull request #22774 from kellams/masterRémi Verschelde
Fix to scrolling, rounding error on max_v_scroll
2018-10-06Merge pull request #22773 from KellyThomas/docs-linksRémi Verschelde
[Docs] Fix some broken links
2018-10-06Fix warnings in HTML5 build outside platform filesLeon Krause
2018-10-05Fixes to baker, restored xatlas and fixed bake options.Juan Linietsky
2018-10-05Fix to scrolling, rounding error on max_v_scrollKellam Spencer
2018-10-06[Docs] Fix some broken linksKelly Thomas
2018-10-05Merge pull request #22750 from williamd1k0/improve-resource-preloaderRémi Verschelde
Improve ResourcePreloader editor plugin
2018-10-05Merge pull request #22753 from bugfi5h/masterRémi Verschelde
Fix to ColorPicker behaviour when entering html. Fixing Issue #22714
2018-10-05Merge pull request #22772 from Zylann/fix_load_memdelete_nullRémi Verschelde
Don't delete FileAccess when it is null
2018-10-05Don't delete FileAccess when it is nullMarc Gilleron
2018-10-05Merge pull request #22769 from neikeq/issue-22765Rémi Verschelde
Fix C# API assembly build errors in generics
2018-10-05Improve ResourcePreloader editor pluginWilliam Tumeo
Fix #22724 by adding an Open Resource button Add a Remove button to each tree item Remove the old Remove button and its useless code Adjust columns min width Remove Resource names and move icons to the left Add a Resource icon fallback
2018-10-05Merge pull request #22768 from qonnop/icon-noise-textureRémi Verschelde
Added noise texture icon, fixes #22704
2018-10-05Fix C# API assembly build errors in genericsIgnacio Etcheverry
2018-10-05Added noise texture icon, fixes #22704qonnop
2018-10-05Merge pull request #22764 from neikeq/issue-22751Rémi Verschelde
Fix build error for windows mono export templates
2018-10-05Fix build error for windows mono export templatesIgnacio Etcheverry
2018-10-05Merge pull request #22760 from zochris/loosen-generic-guardRémi Verschelde
Loosen generic guard on some methods
2018-10-05Merge pull request #22688 from neikeq/lotsofgoodiesRémi Verschelde
Mono: Editor and export template dependencies and fixes
2018-10-05loosen generic guard on method for ResourceLoaderzochris
For more details see #22658
2018-10-05Merge pull request #22743 from guilhermefelipecgs/add_input_docRémi Verschelde
[Docs] Add doc for Input::get_action_strength
2018-10-05loosen generic guard on Node extension methodszochris
For more details see #22658
2018-10-05[Docs] Add doc for Input::get_action_strengthGuilherme Felipe
2018-10-05Fix to ColorPicker behaviour when entering html.R. K
2018-10-05Merge pull request #22685 from remmah/patch-1Rémi Verschelde
Modernized copy/paste APIs on macOS #7185
2018-10-05Update AUTHORS and DONORS listRémi Verschelde
New contributors added to AUTHORS: @cbscribe, @DualMatrix Thanks to all contributors and donors for making Godot possible! [ci skip]
2018-10-05Merge pull request #22623 from dualtagh/22586Rémi Verschelde
22586: Dragging file icon on to another file causes "Error Moving" in FileSystem dock
2018-10-05Merge pull request #22737 from DualMatrix/warn_sort_customRémi Verschelde
Added a check in sort_custom that test whether the given method exists.
2018-10-05Merge pull request #22732 from DualMatrix/deselectRémi Verschelde
Deselect recents when selecting favorites and vice versa in Create Node window.
2018-10-05Merge pull request #22726 from marcelofg55/coremidi_warnRémi Verschelde
Fix CoreMidi warnings
2018-10-04Fix TextEdit margin start spacing with two scrollbarsMichael Alexsander Silva Dias
2018-10-04Added a check in sort_custom thats test wether the given method exists.DualMatrix
Added a check in sort_custom thats test wether the given method exists.
2018-10-04Deselect recents when selecting favorites and vice versa in Create Node.DualMatrix
Deselect recents when selecting favorites and vice versa in Create Node.
2018-10-0422586: Dragging file icon on to another file causes "Error Moving" in ↵Dualtagh Murray
FileSystem dock
2018-10-04Fix CoreMidi warningsMarcelo Fernandez
2018-10-04Merge pull request #22715 from groud/fix_tilemap_editorRémi Verschelde
Fixes tilemap editor offset tile selection
2018-10-04Fix some cppcheck errorsSimon Wenner
cppcheck: fix broken pre-processor statement cppcheck: fix Uninitialized struct members in canvas editor plugin cppcheck: fix uninitialized struct member: method_api.is_virtual
2018-10-04Merge pull request #22719 from akien-mga/ci-werrorRémi Verschelde
Travis: Enable 'werror' for X11 and Android builds
2018-10-04Travis: Enable 'werror' for X11 and Android buildsRémi Verschelde
They are currently warning-free, so let's keep it that way.
2018-10-04Fix unused variable and wrong warning workaroundRémi Verschelde
I had been looking at the wrong line all along when attempting to fix: ``` core/os/memory.cpp:184:13: warning: unused variable 's' [-Wunused-variable] uint64_t *s = (uint64_t *)mem; ^ ```
2018-10-04Fixes tilemap editor offset tile selectiongroud
2018-10-04Merge pull request #22713 from akien-mga/fix-warningsRémi Verschelde
Fix GCC 8 warnings about potentially unitialized variables
2018-10-04Merge pull request #22693 from mineevgleb/fix-graphnode-titleRémi Verschelde
#21661: fixed GraphNode title offset
2018-10-04Merge pull request #22706 from GDquest/doc-texture-progressRémi Verschelde
[DOCS] Complete the TextureProgress reference
2018-10-04Fix TileMap editor drawingthe 8th mage
the tile cursor did not follow the mouse cursor, and the tile grid was displayed wrong, because the forward_canvas_draw_over_viewport function used the wrong xform and thus its map_to_world is not the inverse of the mouse interactor world_to_map, making the tiles draw from 0,0 of the screen instead of 0,0 of the tile map (which is in a different place)
2018-10-04Fix GCC 8 warnings about potentially unitialized variablesRémi Verschelde
Fixes the following GCC 8 warnings: ``` core/image.cpp:730:44: warning: 'mip1_weight' may be used uninitialized in this function [-Wmaybe-uninitialized] core/image.cpp:293:20: warning: 'mip2' may be used uninitialized in this function [-Wmaybe-uninitialized] core/image.cpp:293:20: warning: 'mip1' may be used uninitialized in this function [-Wmaybe-uninitialized] editor/audio_stream_preview.cpp:58:19: warning: 'vmax' may be used uninitialized in this function [-Wmaybe-uninitialized] editor/audio_stream_preview.cpp:85:19: warning: 'vmin' may be used uninitialized in this function [-Wmaybe-uninitialized] editor/editor_themes.cpp:306:53: warning: 'preset_contrast' may be used uninitialized in this function [-Wmaybe-uninitialized] editor/plugins/animation_blend_space_2d_editor.cpp:459:27: warning: 'prev_idx' may be used uninitialized in this function [-Wmaybe-uninitialized] editor/plugins/animation_blend_space_2d_editor.cpp:443:27: warning: 'prev_idx' may be used uninitialized in this function [-Wmaybe-uninitialized] main/tests/test_oa_hash_map.cpp:57:29: warning: 'value' may be used uninitialized in this function [-Wmaybe-uninitialized] modules/csg/csg.cpp:764:40: warning: 'max_angle' may be used uninitialized in this function [-Wmaybe-uninitialized] modules/csg/csg_shape.cpp:1945:3: warning: 'face_count' may be used uninitialized in this function [-Wmaybe-uninitialized] scene/3d/voxel_light_baker.cpp:1593:8: warning: 'cone_aperture' may be used uninitialized in this function [-Wmaybe-uninitialized] scene/3d/voxel_light_baker.cpp:1592:6: warning: 'cone_dir_count' may be used uninitialized in this function [-Wmaybe-uninitialized] scene/animation/animation_blend_space_2d.cpp:471:8: warning: 'mind' may be used uninitialized in this function [-Wmaybe-uninitialized] core/os/memory.cpp:94: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas] core/os/memory.cpp:95: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas] core/os/memory.cpp:98: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas] ```