Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-25 | Merge pull request #32296 from ↵ | Rémi Verschelde | |
BenjaminRiley/save-original-scene-after-save-as-branch 'Save Branch as Scene' also saves original scene | |||
2019-09-25 | 'Save Branch as Scene' adds to undo history | Benjamin Riley | |
When saving a branch as a scene, can now undo replacing the original branch with the new branch scene. 'Save Branch as Scene' previously would not mark the original scene as changed, and therefore no prompt would appear if the scene was closed immediately after saving the branch. The new branch scene is not deleted when undo-ing. | |||
2019-09-25 | Merge pull request #32306 from hbina/unused_variable | Rémi Verschelde | |
Fixed incorrect usage of variables in querying values. | |||
2019-09-25 | Merge pull request #32319 from Calinou/optimize-svgs | Rémi Verschelde | |
Optimize editor icon SVGs using svgcleaner | |||
2019-09-25 | Merge pull request #32318 from Calinou/improve-audiostreamplayer3d-gizmo | Rémi Verschelde | |
Improve the AudioStreamPlayer3D gizmo | |||
2019-09-25 | Merge pull request #32327 from YeldhamDev/lineedit_icon_minsize | Rémi Verschelde | |
Make LineEdit's minimal size adapt to its icons | |||
2019-09-25 | Merge pull request #32329 from marstaik/gltf_32314 | Rémi Verschelde | |
glTF: Fixed mistake with root node calculation in skin_verify | |||
2019-09-25 | Merge pull request #32320 from vnen/gdscript-type-resolution | Rémi Verschelde | |
GDScript: Fix type resolution not being return in some cases | |||
2019-09-24 | glTF: Fixed mistake with root node calculation in skin_verify | Marios Staikopoulos | |
Was not actually grabbing the computed roots for comparison, but instead was grabbing the disjoint_set representatives. | |||
2019-09-25 | Make LineEdit's minimal size adapt to its icons | Michael Alexsander Silva Dias | |
2019-09-24 | GDScript: Fix type resolution not being return in some cases | George Marques | |
Some situations caused the parser node type to not being update when trying to resolve the type, returning invalid data and breaking the parsing when it shouldn't. This patch fix the behavior. | |||
2019-09-24 | Optimize editor icon SVGs using svgcleaner | Hugo Locurcio | |
This makes editor binaries about 230 KB smaller. The command used was: parallel svgcleaner --multipass {} {} ::: editor/icons/*.svg | |||
2019-09-24 | Fixed incorrect use of variables | Hanif Bin Ariffin | |
The previous committer mistakenly used the wrong variable to query some values. This commit simply changes it so that it queries the right Dict. | |||
2019-09-24 | Improve the AudioStreamPlayer3D gizmo | Hugo Locurcio | |
This adds more lines to the emission angle cone to give a better feel of depth in the 3D world. | |||
2019-09-24 | Merge pull request #32317 from KoBeWi/just_dont | Rémi Verschelde | |
Don't try to slice empty arrays | |||
2019-09-24 | Don't try to slice empty arrays | Tomasz Chabora | |
2019-09-24 | Merge pull request #32309 from clayjohn/particles_tex_scale | Rémi Verschelde | |
Fix particles scale randomization | |||
2019-09-24 | fix particles scale randomization | clayjohn | |
2019-09-24 | Merge pull request #32269 from m4gr3d/improve_build_time | Rémi Verschelde | |
Update the Godot gradle build tasks to provide additional flexibility | |||
2019-09-24 | doc: Sync classref with current source | Rémi Verschelde | |
2019-09-24 | Merge pull request #32285 from Faless/crypto/initial_docs | Rémi Verschelde | |
Add documentation for crypto-related classes. | |||
2019-09-24 | Merge pull request #32307 from neikeq/mesege | Rémi Verschelde | |
Fix wrong defval in EditorSpatialGizmo.add_mesh method bind | |||
2019-09-24 | Merge pull request #32305 from akien-mga/doc-fixup-self-closing-tag | Rémi Verschelde | |
doc: Fix parsing of self-closing XML tags | |||
2019-09-24 | Updates 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-24 | Fix wrong defval in EditorSpatialGizmo.add_mesh method bind | Ignacio Etcheverry | |
The type of the parameter 'skeleton' was changed from 'RID' to 'SkinReference', yet the default value remained 'RID()'. | |||
2019-09-24 | Improve C# bindings generator errors for default param values | Ignacio Etcheverry | |
2019-09-24 | Add 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-24 | doc: Fix parsing of self-closing XML tags | Ré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-24 | Merge pull request #31925 from bojidar-bg/31855-overriden-properties-docs | Rémi Verschelde | |
Add overriden properties to the documentation | |||
2019-09-24 | Fix copyright headers and style issues | Rémi Verschelde | |
2019-09-24 | doc: Sync classref with current source | Rémi Verschelde | |
Fix a few missing bindings or unspecified argument names and default values. | |||
2019-09-24 | Merge pull request #31883 from aole/create-string-function-repeat | Rémi Verschelde | |
Create a GDScript String function repeat | |||
2019-09-24 | Merge pull request #31935 from aole/Change-minimum-size-when-theme-changed | Rémi Verschelde | |
Change minimum size when theme changed | |||
2019-09-24 | Merge pull request #31944 from skyace65/visibilityenabler | Rémi Verschelde | |
Clarify VisibilityEnabler2D description | |||
2019-09-24 | Merge pull request #31974 from YeldhamDev/tilegrid_map_fixes | Rémi Verschelde | |
Small fixes for the Tile/GridMap editors | |||
2019-09-24 | Merge pull request #31976 from Calinou/doc-improve-shadow-atlas-sizes | Rémi Verschelde | |
Improve documentation pertaining to shadow atlas sizes | |||
2019-09-24 | Merge pull request #31978 from YeldhamDev/inspector_dock_small_improvements | Rémi Verschelde | |
Small improvements to the inspector dock | |||
2019-09-24 | Merge pull request #32267 from YeldhamDev/fix_tab_icons | Rémi Verschelde | |
Fix various problems with tab-related icons | |||
2019-09-24 | Merge pull request #32283 from Calinou/project-manager-no-open-ctrl-double-click | Rémi Verschelde | |
Don't open a project in the list if Ctrl is held while double-clicking | |||
2019-09-24 | Merge pull request #32286 from Calinou/doc-improve-os-shell-open | Rémi Verschelde | |
Improve the `OS.shell_open()` documentation | |||
2019-09-24 | Merge pull request #32288 from CorattiS86/fixing_#32263 | Rémi Verschelde | |
Fix Hide Console Window stores opposite value | |||
2019-09-24 | Merge pull request #32257 from Calinou/doc-set-window-title-performance | Rémi Verschelde | |
Mention performance caveats of `OS.set_window_title()` | |||
2019-09-24 | Merge pull request #31970 from HaSa1002/i18n | Rémi Verschelde | |
Fixed out of range crash on remapping files for translation | |||
2019-09-24 | Merge pull request #32225 from Calinou/improve-editor-help-display | Rémi Verschelde | |
Improve the editor help display | |||
2019-09-24 | Merge pull request #32224 from KoBeWi/not_so_smart_lines | Rémi Verschelde | |
Initialize snap_target and make sure it disappears | |||
2019-09-24 | Merge pull request #32202 from Relintai/fix-crash-in-rich-text-label | Rémi Verschelde | |
Fix crash on some platforms in RichTextLabel. | |||
2019-09-24 | Merge pull request #32194 from AlexRixhardson/fix-7945 | Rémi Verschelde | |
Fixes crash described in issue 7945 (Duplicated [self drawView] in iphone gl_view) | |||
2019-09-23 | Merge pull request #30497 from Calinou/editor-gizmos-change-notify | Rémi Verschelde | |
Notify changes in properties that can be edited by 3D gizmos | |||
2019-09-23 | Merge pull request #32029 from nekomatata/bezier-track-fixes | Rémi Verschelde | |
Fixes in AnimationTrackEditor around bezier curves | |||
2019-09-23 | Merge pull request #32250 from lawnjelly/android-keyboard2 | Rémi Verschelde | |
Fix Android keyboard crash with left cursor |