Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-12-06 | Merge pull request #34141 from YeldhamDev/filediag_parenthesis_space_removal | Rémi Verschelde | |
Remove extra spaces from parenthesis in *FileDialog's filter menu | |||
2019-12-06 | Merge pull request #34142 from NoFr1ends/fix-missing-null-checks-mono | Ignacio Roldán Etcheverry | |
Fix missing null checks in Mono Binding of GD | |||
2019-12-06 | Fix missing null checks in Mono Binding of GD | Jonas | |
The print methods of mono binding was missing null checks for the params | |||
2019-12-06 | Remove extra spaces from parenthesis in *FileDialog's filter menu | Michael Alexsander | |
2019-12-06 | Merge pull request #34138 from akien-mga/ios-disable-armv7 | Rémi Verschelde | |
iOS: Disable armv7 as target arch by default | |||
2019-12-06 | Merge pull request #34128 from akien-mga/doc-animplayer-play-stop | Rémi Verschelde | |
doc: Fix and clarify AnimationPlayer play and stop descriptions | |||
2019-12-06 | iOS: Disable armv7 as target arch by default | Rémi Verschelde | |
We no longer compile for armv7 and x86 in the official export templates, as those architectures are no longer relevant for iOS. If users really want to support armv7 (used on devices from before September 2013, e.g. iPhone 5), they can still build their own templates and toggle the option. We might remove the option altogether in a later release to avoid the confusion for users that might tick the checkbox without having compiled their own templates. Fixes #34135. | |||
2019-12-06 | Merge pull request #34132 from flyingpimonster/arvr-docs | Rémi Verschelde | |
Docs: ARVRController and ARVRInterface | |||
2019-12-06 | Merge pull request #34133 from timothyqiu/guides-meta | Rémi Verschelde | |
Call clear_meta when clearing guides with the ruler | |||
2019-12-06 | clear_meta when clearing guides with the ruler | Haoyu Qiu | |
2019-12-05 | Docs: ARVRController and ARVRInterface | James Westman | |
This commit clarifies a few methods and members in the AR/VR docs. It also updates some wording according to the style guide and fixes a couple typos. | |||
2019-12-05 | doc: Fix and clarify AnimationPlayer play and stop descriptions | Rémi Verschelde | |
Closes #34125. | |||
2019-12-05 | Merge pull request #34114 from simpuid/clear-guides-meta | Rémi Verschelde | |
changed set_meta to remove_meta in CLEAR_GUIDES menu option | |||
2019-12-05 | Merge pull request #34106 from KoBeWi/convoluted_ownership | Rémi Verschelde | |
Don't store index of root nodes | |||
2019-12-05 | Merge pull request #34123 from nekomatata/joint-spatial-gizmo-errors | Rémi Verschelde | |
Fixed errors in JointSpatialGizmoPlugin when selecting a joint with unset nodes | |||
2019-12-05 | Fixed errors in JointSpatialGizmoPlugin when selecting a joint with unset nodes | PouleyKetchoupp | |
Fixes #34122 | |||
2019-12-05 | Merge pull request #34018 from ↵ | Ignacio Roldán Etcheverry | |
dsge/show-template-directory-path-in-error-message Make sure to include the path in the "Data template directory not found" error message | |||
2019-12-05 | Merge pull request #34113 from timothyqiu/clear-guides | Rémi Verschelde | |
Fixes crash when clearing guides in empty scene | |||
2019-12-05 | Fixes crash when clearing guides in empty scene | Haoyu Qiu | |
2019-12-05 | GLES2: Fix uninitialized members in ShaderGLES2::Version | Rémi Verschelde | |
Fixes #34109. | |||
2019-12-05 | Merge pull request #34107 from codecustard/fix-vseditor-add-node-pos | Rémi Verschelde | |
Fixes wrong position when adding node in VS editor | |||
2019-12-05 | Merge pull request #34103 from ↵ | Rémi Verschelde | |
akien-mga/resourceloader-remap-locale-near-matching Translation: Use proper language code for locale near matching, including in ResourceLoader | |||
2019-12-05 | Merge pull request #34039 from Eoin-ONeill-Yokai/multimeshfix | Rémi Verschelde | |
Added Missing Binding for `multimesh_create` to VisualServer | |||
2019-12-04 | Fixes wrong position when adding node in VS editor | codecustard | |
When adding a node in the visual script editor while zoomed in, the position of the newly added node would be wrong. | |||
2019-12-05 | Don't store index of root nodes | Tomasz Chabora | |
2019-12-04 | Added method binding for `multimesh_create` that was missing from ↵ | Eoin O'Neill | |
VisualServer class. | |||
2019-12-05 | changed set_meta to remove_meta in CLEAR_GUIDES menu option | simpuid | |
2019-12-04 | Merge pull request #34101 from neikeq/baka | Rémi Verschelde | |
Mono/C#: Several android fixes | |||
2019-12-04 | Mono/C#: Several android fixes | Ignacio Etcheverry | |
- Added correct config file for android dllmaps. - Fix __Internal DllImports with a dlopen fallback. - Add missing P/Invoke functions and internal calls expected by the monodroid BCL and our custom version of the 'Android.Runtime.AndroidEnvironment' class (this last one can be found in the godot-mono-builds repo). - Make sure to set 'btls' instead of 'legacy' as the default TLS provider on Android. | |||
2019-12-04 | ResourceLoader: Add language code matching for localized resources | Rémi Verschelde | |
Near matching was not implemented like in TranslationServer, so a resource remapped for 'ru' (but not 'ru_RU') would not be used as fallback if the system locale was 'ru_RU'. Fixes #34058. | |||
2019-12-04 | Translation: Refactor locale matching to use proper language code | Rémi Verschelde | |
The previous code only parsed the first two characters (potentially reading out of bounds if input was invalid), but some locales use a 3-letter language code (e.g. 'nah_MX'). So I refactored the logic a bit to properly parse the locale and extract the part left of the regional code, if provided (supports both 'en_US' and 'en-US' style). I made TranslationServer::get_language_code() public as I'll use it in a follow up commit. | |||
2019-12-04 | C#: Add Duplicate method to the Array and Dictionary bindings | Ignacio Etcheverry | |
2019-12-04 | Merge pull request #34099 from akien-mga/gles3-polygon-buffer-orphaning-fix-2 | Rémi Verschelde | |
Properly orphan polygon index buffer after binding (take 2) | |||
2019-12-04 | Properly orphan polygon index buffer after binding (take 2) | Rémi Verschelde | |
Follow-up to #34088, patch by @oeleo1 from https://github.com/godotengine/godot/issues/34065#issuecomment-561530896 | |||
2019-12-04 | Added support for vertical syncing via the Windows OS compositor (DWM.) | TerminalJack | |
2019-12-04 | i18n: Sync translations with Weblate | Rémi Verschelde | |
2019-12-04 | Merge pull request #34097 from Calinou/travis-doc-makerst | Rémi Verschelde | |
Travis CI: Run `makerst.py` to check for documentation errors | |||
2019-12-04 | Merge pull request #34096 from timothyqiu/i18n-ttr | Rémi Verschelde | |
Fixes translation for project sort options | |||
2019-12-04 | Travis CI: Run `makerst.py` to check for documentation errors | Hugo Locurcio | |
2019-12-04 | Fixes translation for project sort options | Haoyu Qiu | |
2019-12-04 | Merge pull request #34087 from bruvzg/os_docs_platform_support | Rémi Verschelde | |
OS class docs, adds platform compatibility notes. | |||
2019-12-04 | Merge pull request #34094 from volzhs/compile-windows-on-linux | Rémi Verschelde | |
Fix compile error for Windows on Linux | |||
2019-12-04 | Merge pull request #34067 from bojidar-bg/32370-retype-message | Rémi Verschelde | |
Make error when accidentially redeclaring a variable's type clearer | |||
2019-12-04 | Fix compile error for Windows on Linux | volzhs | |
2019-12-03 | Merge pull request #34088 from clayjohn/GLES3-polygon-buffer-orphaning-fix | Rémi Verschelde | |
Properly orphan polygon index buffer after binding | |||
2019-12-03 | Merge pull request #34079 from KoBeWi/rcexport | Rémi Verschelde | |
Don't stop export if rcedit path is invalid | |||
2019-12-03 | [ci skip] OS class documentations, adds platform compatibility notes. | bruvzg | |
2019-12-03 | properly orphan polygon index buffer after binding | clayjohn | |
2019-12-03 | Merge pull request #34084 from Xrayez/fix-slow-polyline | Rémi Verschelde | |
Fix severe performance drop while deflating polylines | |||
2019-12-03 | Merge pull request #34082 from akien-mga/emscripten-clamp-fastcomp | Rémi Verschelde | |
Emscripten: Re-add BINARYEN_TRAP_MODE='clamp' for fastcomp |