summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-02-16Merge pull request #25932 from qarmin/fix_text_edit_issueRémi Verschelde
Fix big text window in TextEdit
2019-02-16Merge pull request #25924 from Calinou/add-gamepad-button-shortcutRémi Verschelde
Make Button shortcuts triggerable by gamepads
2019-02-16Make ray shapes not work with OWC. They don't make practical sense together. ↵Juan Linietsky
Closes #25532
2019-02-16Merge pull request #25927 from hpvb/fix-21725Rémi Verschelde
Fix alignment and locking issues with CommandQueueMT
2019-02-16Merge pull request #25888 from marxin/fix-25217-part-2Rémi Verschelde
Fix 2 more UBSAN issues (#25217).
2019-02-16Fix big text window in TextEditqarmin
2019-02-16Fix alignment and locking issues with CommandQueueMTHein-Pieter van Braam
The allocations of commands in CommandQueueMT weren't aligned. This commit aligns all accesses on 64bit boundaries regardless of target platform. This ensures that all types are aligned. Lock-wise the semaphores were maked as usable when the command had ran but not when the synchronous stub had finished with it. This lead to a race condition where sometimes the semaphore got reused before it was waited on. We now mark the semaphore as free only once we're done waiting on it.
2019-02-16Make Button shortcuts triggerable by gamepadsHugo Locurcio
This closes #25741.
2019-02-15Merge pull request #25917 from neikeq/zzIgnacio Etcheverry
Mono: Get rid of irrelevant error and fix export template build errors
2019-02-15Don't print 'Cannot find Mono in the registry' if bundled with GodotIgnacio Etcheverry
Closes #24753
2019-02-15Mono: Fix export template build errorsIgnacio Etcheverry
Fixes #25903
2019-02-15Merge pull request #25901 from godotengine/revert-25841-menubutton-fixRémi Verschelde
Revert "Fix MenuButton item label disappearing when setting shortcut."
2019-02-15Revert "Fix MenuButton item label disappearing when setting shortcut."Rémi Verschelde
2019-02-15Merge pull request #25894 from marcelofg55/last_mouse_focus_crashRémi Verschelde
Fix possible crash with an invalid last_mouse_focus pointer
2019-02-15Merge pull request #25841 from Awkor/menubutton-fixRémi Verschelde
Fix MenuButton item label disappearing when setting shortcut.
2019-02-15Merge pull request #25886 from luizcarlos1405/masterRémi Verschelde
Fix AnimationPlayer bug where it wouldn't reset its position when finished
2019-02-14Fix possible crash with an invalid last_mouse_focus pointerMarcelo Fernandez
2019-02-14Fix MenuButton item label disappearing when setting shortcut.Unknown
2019-02-14Fix 2 more UBSAN issues (#25217).marxin
2019-02-14Fix AnimationPlayer bug where it wouldn't reset its position when finishedLuiz
2019-02-14Merge pull request #25879 from hpvb/fix-25629Rémi Verschelde
Detect when primusrun/optirun is in use
2019-02-14Detect when primusrun/optirun is in useHein-Pieter van Braam
It seems that bumblebee doesn't like us creating multiple GL contexts to avoid this we now detect whether we're running with this software and don't do anything.
2019-02-14Drop unused AnimationTrackKeyEdit::track_editorRémi Verschelde
Added by mistake in 4a24ba6e77c7128e64dee31cf05f6960abdb8108.
2019-02-14Merge pull request #25878 from hpvb/fix-25852Rémi Verschelde
Don't crash if there's no application name
2019-02-14Don't crash if there's no application nameHein-Pieter van Braam
This fixes #25852
2019-02-14-Fixes to undo redo to avoid crash, closes #24251Juan Linietsky
-Changed Animation to have a special signal when tracks are changed, to avoid unnecesary track cache rebuilds in AnimationPlayer -Added missing emit_changed whe modifying keys to Animation -Changed AnimationPlayer to use the new refcounted connections instead of the previous hacky way to keep references -Changed AnimationEditor to update the current track when keys are edited -Fixed bug where undo/redo did not work with AnimationKeyEdit (was not being updated) -Made sure UndoRedo does not mind deleted objects in undo/redo history, this would corrupt the history or clear it without need.
2019-02-14Merge pull request #25717 from nekomatata/dynamic-font-settings-fixRémi Verschelde
Fixed undefined behavior when loading dynamic font settings
2019-02-14Avoid case where editors are deleted while moved, fixes #25508, fixes #24829Juan Linietsky
2019-02-14Merge pull request #25866 from neikeq/issue-25121Rémi Verschelde
Fix exported property values being lost if base GDScript fails to parse
2019-02-14Fix exported property values being lost if base GDScript fails to parseIgnacio Etcheverry
2019-02-13Merge pull request #25776 from luizcarlos1405/masterRémi Verschelde
Fixes some AnimationPlayer bugs
2019-02-13Merge pull request #25422 from azagaya/optionbuttonRémi Verschelde
Fix docs about item_selected and item_focused . Fixes #25273
2019-02-13Fix some AnimationPlayer bugs and update documentationLuiz
2019-02-13Merge pull request #25858 from buresu/fix-package-installerRémi Verschelde
Fix button alignment of Package Installer on OSX
2019-02-13Disallow polygon2D editing if internal vertices exists, as suggested in #24853Juan Linietsky
2019-02-13Fix button alignment of Package Installer on OSXNaoto Kondo
This problem occurs only in the HiDPI environment.
2019-02-13Change some editing display options to make it clearer, as requested in #24853Juan Linietsky
2019-02-13Merge pull request #25842 from marcelofg55/windows_timezoneRémi Verschelde
Fix get_time_zone_info returning inverted bias on Windows/UWP
2019-02-13Fix get_time_zone_info returning inverted bias on Windows/UWPMarcelo Fernandez
2019-02-13Merge pull request #25814 from allkhor/hide_warning_panelRémi Verschelde
Hide the warning panel when no warnings presents.
2019-02-13Hide the warnings panel when no warnings presents.allkhor
2019-02-13Remove all references to stencil, fixes problems on iOS.Juan Linietsky
2019-02-13On mobile, check for float and half float frameuffers supported, fixes ↵Juan Linietsky
#25324, fixes #25325.
2019-02-13Fix typos with codespellRémi Verschelde
Using codespell 1.14.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang doubleclick lod nd numer que te unselect EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
2019-02-13Merge pull request #25821 from akien-mga/sync-class-and-filenamesRémi Verschelde
Ensure classes match their header filename
2019-02-12Merge pull request #25847 from MidZik/masterChris Bradfield
Docs: Clarified TileMap get_cell method behavior.
2019-02-12Clarified TileMap get_cell method behavior.MidZik
2019-02-13Merge pull request #25831 from aaronfranke/mono-trans-rot-scaleIgnacio Etcheverry
[Core] [Mono] Transform2D rotation and scale fixes
2019-02-12[Core] Transform2D add set_scale and fix set_rotationAaron Franke
Note: These are still not exposed to GDScript
2019-02-12[Mono] Fix Transform2D rotation and scaleAaron Franke