summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-06-20Merge pull request #39715 from Calinou/remove-toolbutton-iconRémi Verschelde
Remove unused ToolButton editor icon
2020-06-20Remove unused ToolButton editor iconHugo Locurcio
Left-over from 31b7f02a29cdf4f1c30cfc37962f43f67380b9ad.
2020-06-20Merge pull request #39707 from mrushyendra/export_overwriteRémi Verschelde
Fix overwrite of manual changes in export_presets.cfg when export dialog is opened
2020-06-20Fix overwrite of manual changes in export_presets.cfg when export dialog is ↵Maganty Rushyendra
opened Ensures that behavior when export_presets.cfg file is edited manually while editor is running remains identical to before commit 44094b0.
2020-06-20Merge pull request #39687 from Calinou/2d-editor-shift-horizontal-scrollRémi Verschelde
Scroll horizontally when holding Shift with Scroll to Pan enabled
2020-06-20Merge pull request #39701 from BastiaanOlij/fix_joystick_slidersRémi Verschelde
Fix missing slider joystick handling on Windows
2020-06-20Merge pull request #39689 from Calinou/new-assetlib-iconRémi Verschelde
Replace the AssetLib tab icon with a less confusing design
2020-06-20Merge pull request #39700 from nekomatata/osx-export-zip-fixRémi Verschelde
Set proper file type attribute for OSX zip export
2020-06-20Fix missing slider joystick handling on WindowsBastiaan Olij
2020-06-20Set proper file type attribute for OSX zip exportPouleyKetchoupp
The missing file type in file attributes was causing the file to lose executable permissions when unzipped with some softwares.
2020-06-20Replace the AssetLib tab icon with a less confusing designHugo Locurcio
This closes https://github.com/godotengine/godot-proposals/issues/818.
2020-06-19Merge pull request #39053 from timoschwarzer/static-assert-variant-arg-maxRémi Verschelde
Add static_assert checks where code assumes VARIANT_ARG_MAX == 5
2020-06-19Merge pull request #39427 from hcmlax/shortcut_issue_39351Rémi Verschelde
fixed issue where shortcut doesn't work if alt is pressed before shift
2020-06-19Merge pull request #39657 from Sl3dge78/20467Rémi Verschelde
The "Anim imported" warning gets displayed properly when working on imported anims.
2020-06-19Merge pull request #39684 from asmaloney/FileAccessBuffered-initRémi Verschelde
Ensure FileAccessBuffered structs are properly initialized
2020-06-19Merge pull request #39663 from dreamsComeTrue/connect-dialog-method-nameRémi Verschelde
Prevent having spaces in signal's method in Connect Dialog
2020-06-19Merge pull request #39690 from Calinou/remove-toolbuttonRémi Verschelde
Remove ToolButton in favor of Button
2020-06-19Prevent having spaces in signal's method in Connect DialogDominik 'dreamsComeTrue' Jasiński
Fixes: #39647
2020-06-19Remove ToolButton in favor of ButtonHugo Locurcio
ToolButton has no redeeming differences with Button; it's just a Button with the Flat property enabled by default. Removing it avoids some confusion when creating GUIs. Existing ToolButtons will be converted to Buttons, but the Flat property won't be enabled automatically. This closes https://github.com/godotengine/godot-proposals/issues/1081.
2020-06-19Merge pull request #38932 from Calinou/increase-light3d-shadow-biasRémi Verschelde
Increase the default DirectionalLight3D and OmniLight3D shadow biases
2020-06-19Scroll horizontally when holding Shift with Scroll to Pan enabledHugo Locurcio
This closes https://github.com/godotengine/godot-proposals/issues/1077.
2020-06-19Merge pull request #32751 from Chaosus/shader_const_arrayYuri Roubinsky
Implemented global const array to shaders
2020-06-19Merge pull request #39678 from akien-mga/universae-fenestrasRémi Verschelde
Export: Rename 'Windows Universal' to 'UWP'
2020-06-19Merge pull request #39652 from paulloz/generics-getnodesingroupRémi Verschelde
[mono] Implement generics GetNodesInGroup
2020-06-19Ensure FileAccessBuffered structs are properly initializedAndy Maloney
2020-06-19Merge pull request #34305 from Chaosus/vs_sampler_improvementsYuri Roubinsky
Added Texture2DArray support to visual shaders
2020-06-19Added Texture2DArray support to visual shadersYuri Roubinsky
2020-06-19Merge pull request #39665 from Sl3dge78/animation_save_nameRémi Verschelde
Autofilled path gets set properly on animation subresources saving
2020-06-19Export: Rename 'Windows Universal' to 'UWP'Rémi Verschelde
It's otherwise too easy to be confused between 'Windows Desktop' (Win32) and 'Windows Universal' (UWP).
2020-06-19Implemented global const array to shadersYuri Roubinsky
2020-06-19Merge pull request #39659 from asmaloney/macos-command-backspaceRémi Verschelde
[macOS] Command-backspace in line edit
2020-06-19Merge pull request #39641 from akien-mga/mono-always-define-optionsRémi Verschelde
Mono: Always define options in main.cpp to keep them in docs
2020-06-19Merge pull request #33235 from nekomatata/rich-text-label-fit-heightRémi Verschelde
Option in RichTextLabel for height to fit content
2020-06-19Merge pull request #37231 from Calinou/rename-osx-ios-bundle-identifierRémi Verschelde
Rename "Identifier" to "Bundle Identifier" in macOS/iOS export presets
2020-06-19Rename "Identifier" to "Bundle Identifier" in macOS/iOS export presetsHugo Locurcio
"Bundle Identifier" is more well-understood among macOS and iOS developers and is less ambiguous. This is a slight breaking change as export presets will need to be updated to account for this change. See https://github.com/godotengine/godot-docs/pull/3295.
2020-06-19[mono] implement generics GetNodesInGroupPaul Joannon
2020-06-19Merge pull request #39629 from MichaelBelousov/dont-slice-longs-to-monoRémi Verschelde
Dont slice 64-bit integers marshaled to mono in dynamic contexts
2020-06-19Autofilled path gets set properly on animation subresourcesSl3dge78
2020-06-18[macOS] Command-backspace in line editAndy Maloney
Make command-backspace in line edit work like other macOS applications. If there is a selection, command-backspace deletes the selection. If there isn't a selection, command-backspace deletes from the cursor to the beginning of the line edit. This addresses part of godotengine/godot#23548
2020-06-18adding check for syskeydown on control and altunknown
2020-06-18Fix #20467. The "Anim imported" warning gets displayed properly when working ↵Sl3dge78
on imported anims.
2020-06-18Mono: Always define options in main.cpp to keep them in docsRémi Verschelde
Otherwise generating docs with non-Mono builds removes them, which is not so convenient for the documentation work.
2020-06-18Merge pull request #39638 from mrushyendra/editor_previewRémi Verschelde
Fix editor texture preview for certain specific dimensions
2020-06-18doc: Fix rebase error from #39589Rémi Verschelde
2020-06-18Merge pull request #39589 from Calinou/doc-csharp-classesRémi Verschelde
Document Mono-specific classes
2020-06-18Fix editor texture preview for certain specific dimensionsMaganty Rushyendra
Ensures no error is issued when attempting to preview a resource that may be scaled down to <1 pixel when resizing to fit the thumbnail.
2020-06-18Document Mono-specific classesHugo Locurcio
This fully documents all Mono-specific classes.
2020-06-18Merge pull request #39614 from hinlopen/fix-search-highlightRémi Verschelde
Search result highlights follow font size
2020-06-18Merge pull request #39626 from bojidar-bg/x-tileset-editor-crashRémi Verschelde
Fix a random crash in the TileSet editor
2020-06-18Merge pull request #39625 from Calinou/editor-freelook-restore-mouse-positionRémi Verschelde
Restore previous mouse position when leaving the editor freelook mode