summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-09-25Make LineEdit's minimal size adapt to its iconsMichael Alexsander Silva Dias
2019-09-24Merge pull request #32317 from KoBeWi/just_dontRémi Verschelde
Don't try to slice empty arrays
2019-09-24Don't try to slice empty arraysTomasz Chabora
2019-09-24Merge pull request #32309 from clayjohn/particles_tex_scaleRémi Verschelde
Fix particles scale randomization
2019-09-24fix particles scale randomizationclayjohn
2019-09-24Merge pull request #32269 from m4gr3d/improve_build_timeRémi Verschelde
Update the Godot gradle build tasks to provide additional flexibility
2019-09-24doc: Sync classref with current sourceRémi Verschelde
2019-09-24Merge pull request #32285 from Faless/crypto/initial_docsRémi Verschelde
Add documentation for crypto-related classes.
2019-09-24Merge pull request #32307 from neikeq/mesegeRémi Verschelde
Fix wrong defval in EditorSpatialGizmo.add_mesh method bind
2019-09-24Merge pull request #32305 from akien-mga/doc-fixup-self-closing-tagRémi Verschelde
doc: Fix parsing of self-closing XML tags
2019-09-24Updates the Godot gradle tasks to enable manual runs of the `scons` command.fhuya
Example: To generate for the `release` build target and for the `armv7`, `arm64v8` and `x86` architectures, run the commands: ``` cd godot scons -j4 platform=android target=release android_arch=armv7 scons -j4 platform=android target=release android_arch=arm64v8 scons -j4 platform=android target=release android_arch=x86 cd platform/android/java ./gradlew generateGodotTemplates ``` Notes: - The generated build templates will be located in the `godot/bin` directory (i.e: `android_debug.apk`, `android_release.apk`, `android_source.zip`). - The gradle command will only generate templates for the target(s) with available native shared libraries. For example, running the commands above will only generate the `android_release.apk` and `android_source.zip` files. To delete the generated artifacts, the following commands can be used: ``` cd platform/android/java ./gradlew cleanGodotTemplates ```
2019-09-24Fix wrong defval in EditorSpatialGizmo.add_mesh method bindIgnacio Etcheverry
The type of the parameter 'skeleton' was changed from 'RID' to 'SkinReference', yet the default value remained 'RID()'.
2019-09-24Improve C# bindings generator errors for default param valuesIgnacio Etcheverry
2019-09-24Add documentation for crypto-related classes.Fabio Alessandrelli
Add documentation for Crypto, CryptoKey, HashingContext, and X509Certificate. Add documentation for `StreamPeerSSL.accept_peer`. Ref #29871.
2019-09-24doc: Fix parsing of self-closing XML tagsRémi Verschelde
Follow-up to #31925, `<member />` tags just before `</members>` would cause a parsing issue, and we'd never notice that we're no longer parsing members. Also added space before closing `/>`.
2019-09-24Merge pull request #31925 from bojidar-bg/31855-overriden-properties-docsRémi Verschelde
Add overriden properties to the documentation
2019-09-24Fix copyright headers and style issuesRémi Verschelde
2019-09-24doc: Sync classref with current sourceRémi Verschelde
Fix a few missing bindings or unspecified argument names and default values.
2019-09-24Merge pull request #31883 from aole/create-string-function-repeatRémi Verschelde
Create a GDScript String function repeat
2019-09-24Merge pull request #31935 from aole/Change-minimum-size-when-theme-changedRémi Verschelde
Change minimum size when theme changed
2019-09-24Merge pull request #31944 from skyace65/visibilityenablerRémi Verschelde
Clarify VisibilityEnabler2D description
2019-09-24Merge pull request #31974 from YeldhamDev/tilegrid_map_fixesRémi Verschelde
Small fixes for the Tile/GridMap editors
2019-09-24Merge pull request #31976 from Calinou/doc-improve-shadow-atlas-sizesRémi Verschelde
Improve documentation pertaining to shadow atlas sizes
2019-09-24Merge pull request #31978 from YeldhamDev/inspector_dock_small_improvementsRémi Verschelde
Small improvements to the inspector dock
2019-09-24Merge pull request #32267 from YeldhamDev/fix_tab_iconsRémi Verschelde
Fix various problems with tab-related icons
2019-09-24Merge pull request #32283 from Calinou/project-manager-no-open-ctrl-double-clickRémi Verschelde
Don't open a project in the list if Ctrl is held while double-clicking
2019-09-24Merge pull request #32286 from Calinou/doc-improve-os-shell-openRémi Verschelde
Improve the `OS.shell_open()` documentation
2019-09-24Merge pull request #32288 from CorattiS86/fixing_#32263Rémi Verschelde
Fix Hide Console Window stores opposite value
2019-09-24Merge pull request #32257 from Calinou/doc-set-window-title-performanceRémi Verschelde
Mention performance caveats of `OS.set_window_title()`
2019-09-24Merge pull request #31970 from HaSa1002/i18nRémi Verschelde
Fixed out of range crash on remapping files for translation
2019-09-24Merge pull request #32225 from Calinou/improve-editor-help-displayRémi Verschelde
Improve the editor help display
2019-09-24Merge pull request #32224 from KoBeWi/not_so_smart_linesRémi Verschelde
Initialize snap_target and make sure it disappears
2019-09-24Merge pull request #32202 from Relintai/fix-crash-in-rich-text-labelRémi Verschelde
Fix crash on some platforms in RichTextLabel.
2019-09-24Merge pull request #32194 from AlexRixhardson/fix-7945Rémi Verschelde
Fixes crash described in issue 7945 (Duplicated [self drawView] in iphone gl_view)
2019-09-23Merge pull request #30497 from Calinou/editor-gizmos-change-notifyRémi Verschelde
Notify changes in properties that can be edited by 3D gizmos
2019-09-23Merge pull request #32029 from nekomatata/bezier-track-fixesRémi Verschelde
Fixes in AnimationTrackEditor around bezier curves
2019-09-23Merge pull request #32250 from lawnjelly/android-keyboard2Rémi Verschelde
Fix Android keyboard crash with left cursor
2019-09-23Fix #32263 - Hide Console Window stores opposite valueStefano Coratti
2019-09-23Fix Android keyboard crash with left cursorlawnjelly
Fixes #32168. Previously we were returning all key up and key down messages as unhandled to the OS. This was resulting in crashes on certain keypresses (left cursor), for undetermined reason. This PR defaults all key up and keydown messages to be returned as handled by Godot, except those explicitly coded as exceptions (currently volume keys only).
2019-09-23Merge pull request #32021 from Calinou/editor-audio-bus-snappingRémi Verschelde
Implement snapping in the audio bus editor
2019-09-23Merge pull request #32278 from Calinou/lsp-fix-double-assignmentRémi Verschelde
Fix `line` being assigned to twice in the GDScript language server
2019-09-23Improve the `OS.shell_open()` documentationHugo Locurcio
This adds a `mailto:` example to `OS.shell_open()`.
2019-09-23Merge pull request #32277 from Calinou/override-for-add-feature-tagsRémi Verschelde
Add some missing feature tags to the "Override For..." menu
2019-09-23Don't open a project in the list if Ctrl is held while double-clickingHugo Locurcio
2019-09-23Merge pull request #31975 from codecustard/fixes_subresource_showing_deselectionRémi Verschelde
Fixes Subresource Showing While Unselected
2019-09-23Merge pull request #32273 from Calinou/humanize-size-fix-i18nRémi Verschelde
Fix i18n in `String::humanize_size()`
2019-09-23Merge pull request #31751 from clayjohn/GLES3-Viewport-crash-canvasRémi Verschelde
Throw error when canvas background is used without sample buffer
2019-09-23Fix `line` being assigned to twice in the GDScript language serverHugo Locurcio
This closes #32090.
2019-09-23Merge pull request #31172 from creikey/add-array-slicingRémi Verschelde
Add array slice method
2019-09-23Add some missing feature tags to the "Override For..." menuHugo Locurcio
This closes https://github.com/godotengine/godot-docs/issues/2782.