summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #33036 from Faless/js/no_ecma6Rémi Verschelde2019-10-241-1/+1
|\ | | | | Remove ECMAScript 6 "arrow operator".
| * Remove ECMAScript 6 "arrow operator".Fabio Alessandrelli2019-10-241-1/+1
| | | | | | | | | | We don't need it, it's not well supported by compilers, and it was a mistake in the first place.
* | Merge pull request #33029 from akien-mga/rm-rf-slashRémi Verschelde2019-10-241-31/+15
|\ \ | |/ |/| Fix uninstallation of mono templates directory
| * Fix uninstallation of mono templates directoryRémi Verschelde2019-10-241-31/+15
| | | | | | | | | | | | 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.
* | Merge pull request #33033 from volzhs/fix-tooltipRémi Verschelde2019-10-241-1/+3
|\ \ | | | | | | Fix rendering tooltip
| * | Fix rendering tooltipvolzhs2019-10-241-1/+3
| | |
* | | Merge pull request #33031 from volzhs/inspector-fontRémi Verschelde2019-10-241-2/+2
|\ \ \ | | | | | | | | Fix incorrect text rendering with smaller display scale
| * | | Fix incorrect text rendering with smaller display scalevolzhs2019-10-241-2/+2
| |/ /
* | | Merge pull request #33030 from Xrayez/vformat-err-msgRémi Verschelde2019-10-241-1/+1
|\ \ \ | |/ / |/| | Display error messages in console when vformat is called
| * | Display error messages in console when vformat is calledAndrii Doroshenko (Xrayez)2019-10-241-1/+1
| | |
* | | Merge pull request #33028 from bruvzg/mac_dock_proj_listRémi Verschelde2019-10-241-5/+41
|\ \ \ | | | | | | | | [macOS ] Project manager dock menu improvements.
| * | | Update dock menu on project list changes, add favourites separator.bruvzg2019-10-241-5/+41
| | |/ | |/|
* | | Merge pull request #33012 from madmiraal/vmap-array-operatorRémi Verschelde2019-10-242-2/+2
|\ \ \ | | | | | | | | Initialise VMap and HashMap values to the default when they are created.
| * | | Initialise VMap and HashMap values to the default when they are created.Marcel Admiraal2019-10-242-2/+2
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge pull request #33023 from rxlecky/video-player-refactorRémi Verschelde2019-10-249-16/+28
|\ \ \ | | | | | | | | Refactor VideoPlayer and VideoStream
| * | | Refactor VideoPlayer and VideoStreamSeleckyErik2019-10-249-16/+28
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | Merge pull request #33025 from akien-mga/travis-android-ndk-r20Rémi Verschelde2019-10-242-110/+3
|\ \ \ | |/ / |/| | Travis: Update Android NDK to r20
| * | Travis: Update Android NDK to r20Rémi Verschelde2019-10-242-110/+3
|/ / | | | | | | Drop unused and outdated OSX setup.
* | Merge pull request #33019 from volzhs/class_iconRémi Verschelde2019-10-232-12/+26
|\ \ | | | | | | Resize custom class icon
| * | Resize custom class iconvolzhs2019-10-242-12/+26
| | |
* | | Merge pull request #32670 from aaronfranke/mono-planeRémi Verschelde2019-10-232-12/+13
|\ \ \ | | | | | | | | [Mono] Change Plane intersect methods to return nullable Vector3
| * | | [Mono] Change Plane intersect methods to return nullable Vector3Aaron Franke2019-10-082-12/+13
| | | |
* | | | Merge pull request #33006 from Chaosus/fix_billboard_bugRémi Verschelde2019-10-231-4/+3
|\ \ \ \ | |_|_|/ |/| | | Allows change Sprite3D scale if Billboard mode is enabled
| * | | Allows change Sprite3D scale if Billboard mode is enabledYuri Roubinsky2019-10-231-4/+3
| | | |
* | | | Merge pull request #33014 from nekomatata/remote-load-sub-resourceRémi Verschelde2019-10-231-1/+13
|\ \ \ \ | | | | | | | | | | Fixed variables with built-in resource in remote inspector
| * | | | Fixed variables with built-in resource in remote inspectorPouleyKetchoupp2019-10-231-1/+13
|/ / / / | | | | | | | | | | | | | | | | | | | | Now loading the base resource first in ScriptEditorDebugger, the same way it's done in ScriptEditorPlugin. Fixes #33013
* | | | Merge pull request #33009 from ebert83/fix_editor_save_layoutRémi Verschelde2019-10-231-1/+1
|\ \ \ \ | | | | | | | | | | Fix layout saving error
| * | | | Fix layout saving errorThomas Ebert Hansen2019-10-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | Merge pull request #33001 from Faless/js/http_run_serverRémi Verschelde2019-10-236-38/+269
|\ \ \ \ \ | |/ / / / |/| | | | Implement HTTP server for HTML5 "run" export
| * | | | Implement HTTP server for HTML5 exportFabio Alessandrelli2019-10-231-8/+220
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | | | Improve EditorExportPlatform interface.Fabio Alessandrelli2019-10-235-29/+46
| | | | | | | | | | | | | | | | | | | | | | | | | Convert all get_device* methods to get_option* and normalize their usage as icon, label, tooltip.
| * | | | Fix EditorNode.get_editor_themeFabio Alessandrelli2019-10-231-2/+4
|/ / / / | | | | | | | | | | | | | | | | | | | | 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).
* | | | Merge pull request #32998 from rxlecky/theme-refactorRémi Verschelde2019-10-232-65/+122
|\ \ \ \ | |/ / / |/| | | Theme code refactoring
| * | | Theme code refactoringSeleckyErik2019-10-232-65/+122
| | | | | | | | | | | | | | | | | | | | | | | | - Move GDScript-exposed function definitions from header to source file - Add null check to functions taking list pointers as parameters - Call clear() in copy_theme() if null is passed
* | | | Merge pull request #32600 from cagdasc/3.2-auto-permission-managerRémi Verschelde2019-10-2313-29/+258
|\ \ \ \ | | | | | | | | | | Add request defined permissions in AndroidManifest.xml
| * | | | Add request permission automatically at androidCagdas2019-10-2213-29/+258
| | | | |
* | | | | Merge pull request #32972 from codecustard/fix_spinbox_not_releasingfocusRémi Verschelde2019-10-231-3/+3
|\ \ \ \ \ | | | | | | | | | | | | Fixes spinbox not releasing focus on value change
| * | | | | Fixes spinbox not releasing focus on value changeEmmanuel Barroga2019-10-211-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Trying to release focus of the spinbox's lineedit would not work when done in the "value_changed" callback. The reason is because the "value_change" signal is called first, then the "get_focus" method is called next. This causes the spinbox to get_focus after you try to release focus within the "value_changed" callback. To resolve this, spinbox should get focus first and then emit "value_changed".
* | | | | | Merge pull request #32992 from KoBeWi/AUTOVECTORZRémi Verschelde2019-10-233-1/+21
|\ \ \ \ \ \ | | | | | | | | | | | | | | Auto-increment frame_coords when keying
| * | | | | | Auto-increment frame_coords when keyingTomasz Chabora2019-10-223-1/+21
| | | | | | |
* | | | | | | Merge pull request #32954 from argentite/new-extend-scriptRémi Verschelde2019-10-236-60/+88
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Add separate menu entries for extending and replacing scripts
| * | | | | | | Add clear menu entries for extending and replacing scriptsAnubhab Ghosh2019-10-236-60/+88
| | |_|/ / / / | |/| | | | |
* | | | | | | Merge pull request #32999 from Eoin-ONeill-Yokai/rich-text-label-shadowRémi Verschelde2019-10-231-4/+4
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Shadows Now Properly Translate by RichTextEffect Offset.
| * | | | | | | Shadows Now Properly Translate by RichTextEffect offset.Eoin O'Neill2019-10-221-4/+4
| | |_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | Bugfix 32981.
* | | | | | | Merge pull request #32994 from Calinou/http-document-body-length-caveatsRémi Verschelde2019-10-232-1/+3
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Mention body length getter caveats in HTTPClient and HTTPRequest
| * | | | | | Mention body length getter caveats in HTTPClient and HTTPRequestHugo Locurcio2019-10-222-1/+3
| | | | | | |
* | | | | | | Merge pull request #32924 from ajweeks/add-ruler-arcsRémi Verschelde2019-10-223-4/+49
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Draw arcs to indicate angles being measured by ruler
| * | | | | | | Add arcs to indicate angle being measured by rulerAJ Weeks2019-10-193-4/+49
| | | | | | | |
* | | | | | | | Merge pull request #32796 from Paulb23/set_text_caretRémi Verschelde2019-10-221-0/+6
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Changed `set_text` to place caret at start of the text.
| * | | | | | | | Fix undo / redo scrollbar calulationsPaulb232019-10-131-0/+3
| | | | | | | | |