Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-10-25 | Merge pull request #32326 from starryalley/ios_get_model_name | Rémi Verschelde | |
ios: support get_model_name | |||
2019-10-25 | Merge pull request #33051 from volzhs/inspector-stylebox | Rémi Verschelde | |
Make stylebox preview not to expand Inspector panel | |||
2019-10-25 | Merge pull request #33045 from nekomatata/cpu-particle-uninitialized-member | Rémi Verschelde | |
Fixed emitting not initialized correctly in cpu particles 2d/3d | |||
2019-10-25 | Merge pull request #33021 from 20kdc/doc-animationplayer-quirks | Rémi Verschelde | |
Document AnimationPlayer's quirks in regards to late updates | |||
2019-10-25 | Merge pull request #33041 from volzhs/help-font-size | Rémi Verschelde | |
Recalculate margin based on help source font size | |||
2019-10-25 | Make stylebox preview not to expand Inspector panel | volzhs | |
2019-10-24 | Fixed emitting not initialized correctly in cpu particles 2d/3d | PouleyKetchoupp | |
Fixes uninitialized variable caused by PR #32921 | |||
2019-10-24 | Document AnimationPlayer's quirks in regards to play updating on next ↵ | 20kdc | |
process & similar. (Squashed Edition) | |||
2019-10-24 | Merge pull request #33042 from qarmin/fix_leak_capsule_shape | Rémi Verschelde | |
Fix leak in Physics2DServerSW | |||
2019-10-24 | Merge pull request #33035 from bruvzg/macos_fix_warnings | Rémi Verschelde | |
Fix compilation warnings in macOS build, enable `warnings=extra werror=yes` | |||
2019-10-24 | Merge pull request #33036 from Faless/js/no_ecma6 | Rémi Verschelde | |
Remove ECMAScript 6 "arrow operator". | |||
2019-10-25 | Recalculate margin based on help source font size | volzhs | |
2019-10-24 | Fix leak in Physics2DServerSW | Rafał Mikrut | |
2019-10-24 | Fix compilation warnings in macOS build, enable `warnings=extra werror=yes` ↵ | bruvzg | |
for macOS CI. | |||
2019-10-24 | Merge pull request #33029 from akien-mga/rm-rf-slash | Rémi Verschelde | |
Fix uninstallation of mono templates directory | |||
2019-10-24 | Remove ECMAScript 6 "arrow operator". | Fabio Alessandrelli | |
We don't need it, it's not well supported by compilers, and it was a mistake in the first place. | |||
2019-10-24 | Merge pull request #33033 from volzhs/fix-tooltip | Rémi Verschelde | |
Fix rendering tooltip | |||
2019-10-24 | Merge pull request #33031 from volzhs/inspector-font | Rémi Verschelde | |
Fix incorrect text rendering with smaller display scale | |||
2019-10-24 | Merge pull request #33030 from Xrayez/vformat-err-msg | Rémi Verschelde | |
Display error messages in console when vformat is called | |||
2019-10-24 | Fix rendering tooltip | volzhs | |
2019-10-24 | Fix incorrect text rendering with smaller display scale | volzhs | |
2019-10-24 | Display error messages in console when vformat is called | Andrii Doroshenko (Xrayez) | |
2019-10-24 | Fix uninstallation of mono templates directory | Rémi Verschelde | |
The previous code didn't take into account that templates directories can have subdirectories like the mono templates have. Also fix an unclosed dir handle. | |||
2019-10-24 | Merge pull request #33028 from bruvzg/mac_dock_proj_list | Rémi Verschelde | |
[macOS ] Project manager dock menu improvements. | |||
2019-10-24 | Merge pull request #33012 from madmiraal/vmap-array-operator | Rémi Verschelde | |
Initialise VMap and HashMap values to the default when they are created. | |||
2019-10-24 | Update dock menu on project list changes, add favourites separator. | bruvzg | |
2019-10-24 | Merge pull request #33023 from rxlecky/video-player-refactor | Rémi Verschelde | |
Refactor VideoPlayer and VideoStream | |||
2019-10-24 | Merge pull request #33025 from akien-mga/travis-android-ndk-r20 | Rémi Verschelde | |
Travis: Update Android NDK to r20 | |||
2019-10-24 | Travis: Update Android NDK to r20 | Rémi Verschelde | |
Drop unused and outdated OSX setup. | |||
2019-10-24 | Initialise VMap and HashMap values to the default when they are created. | Marcel Admiraal | |
Assigns a default value in VMap and HashMap when new keys are created using the array operator so they are the same as the other Map classes. The non const version of the array operator can be used for both assigning a value and retrieving a writeable version. In the Map template classes the assign version is being used to create new keys, but sometimes not assigning a value when retrieving a writeable version. This does not address the problem that the default value may not be the correct one, and it does not address the problem that new keys probably should not be created when the array operator is used. These problems will be addressed in a separate commit. | |||
2019-10-24 | Refactor VideoPlayer and VideoStream | SeleckyErik | |
VideoStream: - Fix const correctenss VideoPlayer: - Remove unused member variable last_frame - Move _mix_audios function definition to source file - Fix function parameter naming to match p_ convention - Fix const correctness - Add null checking | |||
2019-10-23 | Merge pull request #33019 from volzhs/class_icon | Rémi Verschelde | |
Resize custom class icon | |||
2019-10-23 | Merge pull request #32670 from aaronfranke/mono-plane | Rémi Verschelde | |
[Mono] Change Plane intersect methods to return nullable Vector3 | |||
2019-10-23 | Merge pull request #33006 from Chaosus/fix_billboard_bug | Rémi Verschelde | |
Allows change Sprite3D scale if Billboard mode is enabled | |||
2019-10-24 | Resize custom class icon | volzhs | |
2019-10-23 | Merge pull request #33014 from nekomatata/remote-load-sub-resource | Rémi Verschelde | |
Fixed variables with built-in resource in remote inspector | |||
2019-10-23 | Fixed variables with built-in resource in remote inspector | PouleyKetchoupp | |
Now loading the base resource first in ScriptEditorDebugger, the same way it's done in ScriptEditorPlugin. Fixes #33013 | |||
2019-10-23 | Merge pull request #33009 from ebert83/fix_editor_save_layout | Rémi Verschelde | |
Fix layout saving error | |||
2019-10-23 | Merge pull request #33001 from Faless/js/http_run_server | Rémi Verschelde | |
Implement HTTP server for HTML5 "run" export | |||
2019-10-23 | Fix layout saving error | Thomas Ebert Hansen | |
As a result of commit b49226e085 FileAccess::open no longer returns ERR_CANT_OPEN if the file cannot be found/opened. Instead check against ERR_FILE_NOT_FOUND or ERR_FILE_CANT_OPEN. | |||
2019-10-23 | Allows change Sprite3D scale if Billboard mode is enabled | Yuri Roubinsky | |
2019-10-23 | Implement HTTP server for HTML5 export | Fabio Alessandrelli | |
Since most browsers no longer allow making async requests from a page loaded from `file://`, we now need a proper HTTP server to load the exported HTML5 game. This should also allow us to get the debugger to work over a WebSocket connection. | |||
2019-10-23 | Improve EditorExportPlatform interface. | Fabio Alessandrelli | |
Convert all get_device* methods to get_option* and normalize their usage as icon, label, tooltip. | |||
2019-10-23 | Fix EditorNode.get_editor_theme | Fabio Alessandrelli | |
EditorNode was not correctly setting the class memeber when creating the theme, using a local variable instead. Theme is now created before registering exporters (as they might need it). | |||
2019-10-23 | Merge pull request #32998 from rxlecky/theme-refactor | Rémi Verschelde | |
Theme code refactoring | |||
2019-10-23 | Merge pull request #32600 from cagdasc/3.2-auto-permission-manager | Rémi Verschelde | |
Add request defined permissions in AndroidManifest.xml | |||
2019-10-23 | Merge pull request #32972 from codecustard/fix_spinbox_not_releasingfocus | Rémi Verschelde | |
Fixes spinbox not releasing focus on value change | |||
2019-10-23 | Merge pull request #32992 from KoBeWi/AUTOVECTORZ | Rémi Verschelde | |
Auto-increment frame_coords when keying | |||
2019-10-23 | Merge pull request #32954 from argentite/new-extend-script | Rémi Verschelde | |
Add separate menu entries for extending and replacing scripts | |||
2019-10-23 | Merge pull request #32999 from Eoin-ONeill-Yokai/rich-text-label-shadow | Rémi Verschelde | |
Shadows Now Properly Translate by RichTextEffect Offset. |