Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-05-09 | Apply viewport scale to selection update methods. Changed to propper fix ↵ | Gabriel Gavilan | |
sugested by reduz | |||
2018-04-19 | Merge pull request #18281 from akien-mga/coverity-string | Rémi Verschelde | |
Fix some Coverity warnings in String API | |||
2018-04-19 | Merge pull request #18289 from sersoong/master-contextmenu | Rémi Verschelde | |
Fixed context menu TTR bugs | |||
2018-04-19 | Fixed context menu TTR bugs | sersoong | |
2018-04-18 | Fix some Coverity warnings in String API | Rémi Verschelde | |
- StringName::StringName(const StringName &p_name) Non-static class member _data is not initialized in this constructor nor in any functions that it calls. - StringName::_Data() Non-static class member idx is not initialized in this constructor nor in any functions that it calls. - String::num_uint64(...) This less-than-zero comparison of an unsigned value is never true. n % base < 0UL. - String::hex_to_int(...) and String::hex_to_int64(...) Execution cannot reach this statement (deadcode) | |||
2018-04-18 | Merge pull request #18261 from flashyincceo/export-project-default-filename | Rémi Verschelde | |
Set default file name for exported projects | |||
2018-04-18 | Merge pull request #18172 from Chaosus/fix_notification | Rémi Verschelde | |
Prevent visibility notification from being called twice in object creation | |||
2018-04-18 | Merge pull request #18168 from Chaosus/fixcrash | Rémi Verschelde | |
Fix possible crash when clicking on Skeleton2D or Sprite editor options | |||
2018-04-18 | Set default file name for exported projects | Peter Folkins | |
2018-04-18 | Fix possible crash when clicking on Skeleton2D or Sprite editor options | Chaosus | |
2018-04-18 | Merge pull request #18270 from akien-mga/windows-case-test | Rémi Verschelde | |
Fix case mismatch check on Windows | |||
2018-04-18 | Merge pull request #18161 from flashyincceo/fixing-bug-#18128 | Rémi Verschelde | |
Add popup_closed signal for ColorPickerButton | |||
2018-04-18 | Fix case mismatch check on Windows | Rémi Verschelde | |
@reduz pushed the old 44989bc95754b40f4c00f10db43ed91f64a3e475 commit today which he had forgotten in his local clone, and apparently it does not compile. Also fixed style. | |||
2018-04-18 | Add a macro to deprecate methods | Juan Linietsky | |
2018-04-18 | Test and warn of case mismatch on Windows | Juan Linietsky | |
Will throw a warning when a file is opened with a different case than what is stored on the Windows filesystem. | |||
2018-04-18 | Merge pull request #18204 from tagcup/quat_scale | Rémi Verschelde | |
Avoid converting Quat to Euler angles when not necessary. | |||
2018-04-18 | Merge pull request #17391 from PJB3005/18-03-09-fix-canvas-light-shaders | Rémi Verschelde | |
Fixes canvas light shaders. | |||
2018-04-18 | Merge pull request #18227 from bojidar-bg/fix-date-unix-crash | Rémi Verschelde | |
Fix crash resulting from bad month check in core_bind.cpp | |||
2018-04-18 | Merge pull request #18230 from volzhs/fix-image-error | Rémi Verschelde | |
Fix index out of size error on Image | |||
2018-04-18 | Merge pull request #18236 from bncastle/add_call_flags_description | Rémi Verschelde | |
Add descriptions for GroupCall flags | |||
2018-04-18 | Merge pull request #18247 from volzhs/path-color | Rémi Verschelde | |
Ability to change path color with self modulate | |||
2018-04-18 | Merge pull request #18142 from AndreaCatania/coverity1 | Rémi Verschelde | |
Removed useless check | |||
2018-04-18 | Merge pull request #18053 from mysticfall/master | Rémi Verschelde | |
#18051: Clean up and reformat C# source files | |||
2018-04-18 | Merge pull request #16902 from groud/analog_action_system | Juan Linietsky | |
Allow actions to provide an analog value | |||
2018-04-17 | Fix crash resulting from bad month check in core_bind.cpp | Bojidar Marinov | |
Also, make it clear that day is 0-based. This might cause very slight differcies in existing games. Fixes #18221 | |||
2018-04-17 | Fix typos in shader_language.cpp | Poommetee Ketson | |
2018-04-17 | Merge pull request #18239 from vnen/variant-op-names | Rémi Verschelde | |
Fix names of Variant operators | |||
2018-04-17 | Merge pull request #18224 from endragor/android-device-events | Rémi Verschelde | |
Fix Android input source checks | |||
2018-04-17 | Merge pull request #18215 from marcelofg55/pulseaudio_latency | Rémi Verschelde | |
Fixed high cpu usage with PulseAudio | |||
2018-04-17 | Ability to change path color with self modulate | volzhs | |
Fix #18164 | |||
2018-04-17 | #18051: Fix indentation issues introduced during clean up | Xavier Cho | |
2018-04-17 | #18051: Do not use `var` in a for-loop, or where type is not obvious | Xavier Cho | |
2018-04-17 | #18051: Use common name for Color type argument | Xavier Cho | |
2018-04-17 | #18051: Remove redundant verbatim prefixes | Xavier Cho | |
2018-04-17 | #18051: Use default parameter value | Xavier Cho | |
2018-04-17 | #18051: Use array initializer when applicable | Xavier Cho | |
2018-04-17 | #18051: Remove redundant parenthesis | Xavier Cho | |
2018-04-17 | #18051: Remove unnecessary variable assignments | Xavier Cho | |
2018-04-17 | #18051: Use 'var' when applicable | Xavier Cho | |
2018-04-17 | #18051: Remove redundant casts and 'using', 'else', 'this' statements | Xavier Cho | |
2018-04-17 | Remove duplicated declaration of RoundToInt() from Mathf | Xavier Cho | |
2018-04-16 | Allow actions to provide an analog value | Gilles Roudiere | |
2018-04-16 | Fix names of Variant operators | George Marques | |
2018-04-16 | Add descriptions for GroupCall flags | bncastle | |
Add descriptions for GroupCall flags | |||
2018-04-16 | Fix error spam with Sprite has compressed texture | volzhs | |
Fix #18177 | |||
2018-04-16 | Fix index out of size error on Image | volzhs | |
Fix #18229 | |||
2018-04-16 | Fix Android input source checks | Ruslan Mustakov | |
Input source types are not pure bit flags, they are combinations of flags, so != 0 check was incorrect and resulted in crashes later, when trying to obtain the device. | |||
2018-04-16 | Merge pull request #18210 from willvincent/feature/exp_doc_fix | Poommetee Ketson | |
Fix/Remove potentially confusing references to Euler [ci skip] | |||
2018-04-15 | Remove incorrect & potentially confusing references to Euler | Will Vincent | |
e is referred to as Euler’s number, so technically the MATH_EXP description in VisualScript doc was not incorrect, though could potentially lead to confusion. e is different from Euler’s constant however, making the existing GDScript exp & VisualScriptMathConstant descriptions nvalid. | |||
2018-04-15 | Fixed high cpu usage with PulseAudio | Marcelo Fernandez | |