summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #40416 from Calinou/doc-file-data-pathsRémi Verschelde2020-07-151-0/+1
|\ | | | | Mention the Data paths documentation in the File class
| * Mention the Data paths documentation in the File classHugo Locurcio2020-07-151-0/+1
| | | | | | | | This closes https://github.com/godotengine/godot-docs/issues/3799.
* | Merge pull request #40391 from RevoluPowered/add_macos_and_linux_github_actionsRémi Verschelde2020-07-152-12/+197
|\ \ | |/ |/| added MacOS and Linux to GitHub Actions
| * added MacOS and Linux to GitHub ActionsGordon MacPherson2020-07-152-12/+197
| |
* | Merge pull request #40414 from rcorre/get-mesh-arrays-docRémi Verschelde2020-07-151-1/+6
|\ \ | |/ |/| Clarify how to convert PrimitiveMesh to ArrayMesh.
| * Clarify how to convert PrimitiveMesh to ArrayMesh.Ryan Roden-Corrent2020-07-151-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | It took me a bit to figure this out, as I was initially doing something more complicated like this before I realized I just had to pass get_mesh_arrays directly to add_surface_from_arrays. ``` var arr_mesh = ArrayMesh.new() var arrays = [] arrays.resize(ArrayMesh.ARRAY_MAX) arrays[ArrayMesh.ARRAY_VERTEX] = c.get_mesh_arrays() arr_mesh.add_surface_from_arrays(Mesh.PRIMITIVE_TRIANGLES, arrays) ```
* | Merge pull request #40412 from Calinou/doc-string-c-unescapeRémi Verschelde2020-07-151-2/+2
|\ \ | |/ |/| Document which escape sequences are supported by `String.c_unescape()`
| * Document which escape sequences are supported by `String.c_unescape()`Hugo Locurcio2020-07-151-2/+2
| | | | | | | | See https://github.com/godotengine/godot/issues/38716.
* | Merge pull request #37961 from Calinou/doc-csharp-dynamic-object-callRémi Verschelde2020-07-151-0/+5
|\ \ | | | | | | Mention C# gotchas in Object's dynamic call/set/connect methods
| * | Mention C# gotchas in Object's dynamic call/set/connect methodsHugo Locurcio2020-07-141-0/+5
| | | | | | | | | | | | This closes #34015.
* | | Merge pull request #40291 from hinlopen/dialog-sizeRémi Verschelde2020-07-1545-85/+92
|\ \ \ | | | | | | | | Resize various dialogs
| * | | Resize dialogs (FileDialog, EditorFileDialog, Reparent, SceneTreeDialog and ↵Stijn Hinlopen2020-07-1445-85/+92
| | | | | | | | | | | | | | | | resource depency dialogs).
* | | | Merge pull request #40376 from hinlopen/quick-open-improvementsRémi Verschelde2020-07-152-144/+158
|\ \ \ \ | |_|_|/ |/| | | Improve quick open performance and behaviour
| * | | Improve quick open performance and update some behaviourStijn Hinlopen2020-07-142-144/+158
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Cache possible files and icons at popup - Sort files with heapsort instead of selection sort - Always scroll back to top (selection) upon refresh - Scoring function: fix second case and remove expensive similarity computation for insignificant results. - Only show a max amount of files (currently set at 300)
* | | | Merge pull request #40380 from Calinou/doc-vehiclebody-limitationsRémi Verschelde2020-07-152-0/+2
|\ \ \ \ | | | | | | | | | | Document VehicleBody3D and VehicleWheel3D limitations
| * | | | Document VehicleBody3D and VehicleWheel3D limitationsHugo Locurcio2020-07-142-0/+2
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | These classes have dozens of open bugs and missing features which may not be fixed anytime soon. It's probably better to document it upfront at this point.
* | | | Merge pull request #40268 from DanielZTing/masterRémi Verschelde2020-07-1517-27/+27
|\ \ \ \ | | | | | | | | | | Fix cancel/OK button order on macOS
| * | | | Fix cancel/OK button order on macOSDaniel Ting2020-07-1017-27/+27
| | | | | | | | | | | | | | | | | | | | | | | | | The macOS platform convention regarding button order is cancel on left, OK on right.
* | | | | doc: Sync classref with current sourceRémi Verschelde2020-07-157-62/+332
| | | | |
* | | | | Merge pull request #40386 from ↵Rémi Verschelde2020-07-151-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | touilleMan/correct-Reference-is_reference-api.json Correct is_reference attribute in api.json for Reference class
| * | | | | Correct is_reference attribute in api.json for Reference classEmmanuel Leblond2020-07-141-1/+1
| | |/ / / | |/| | |
* | | | | Merge pull request #40383 from ↵Rémi Verschelde2020-07-151-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | touilleMan/correct-RichTextLabel.custom_effects-property-type Correct RichTextLabel.custom_effects property type metadata
| * | | | | Correct RichTextLabel.custom_effects property type metadataEmmanuel Leblond2020-07-141-1/+1
| |/ / / /
* | | | | Merge pull request #40387 from thebestnom/Android-Fix-Display-ServerRémi Verschelde2020-07-151-0/+2
|\ \ \ \ \ | | | | | | | | | | | | Android: fix display server always alerting no Vulkan support
| * | | | | Android: fix display server always alerting no Vulkan supportthebestnom2020-07-141-0/+2
| | | | | |
* | | | | | Merge pull request #40392 from ↵Rémi Verschelde2020-07-151-0/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | touilleMan/missing-has_default_value-signals-api_json Add missing has_default_value field for signals in api.json
| * | | | | | Add missing has_default_value field for signals in api.jsonEmmanuel Leblond2020-07-141-0/+1
| | |/ / / / | |/| | | |
* | | | | | Merge pull request #40389 from Chaosus/fix_shaderYuri Roubinsky2020-07-151-6/+6
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix some incorrect conversions which lead to crash in shaders
| * | | | | | Fix some incorrect conversions which lead to crash in shadersYuri Roubinsky2020-07-141-6/+6
| | |/ / / / | |/| | | |
* | | | | | Merge pull request #40298 from Calinou/optimize-ios-splashRémi Verschelde2020-07-142-0/+0
|\ \ \ \ \ \ | | | | | | | | | | | | | | Optimize the default iOS splash images
| * | | | | | Optimize the default iOS splash imagesHugo Locurcio2020-07-112-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Command used: parallel oxipng -o6 --strip --zopfli ::: **/*.png This saves about 14 KB in total.
* | | | | | | Merge pull request #40377 from reduz/fix-default-kb3d-safe-marginRémi Verschelde2020-07-142-2/+2
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | Properly pass safe margin on initialization.
| * | | | | | Properly pass safe margin on initialization.Juan Linietsky2020-07-142-2/+2
| | |/ / / / | |/| | | | | | | | | | | | | | | | Fixes jitter.
* | | | | | Merge pull request #40379 from bruvzg/macos_11_window_sizeRémi Verschelde2020-07-141-9/+11
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | [macOS] Fix window size on macOS Big Sur, use top-left corner as resize origin.
| * | | | | [macOS] Fix window size on macOS Big Sur (title bar height is no longer same ↵bruvzg2020-07-141-9/+11
| | | | | | | | | | | | | | | | | | | | | | | | as menu height), use top-left corner as resize origin instead of bottom-left.
* | | | | | Merge pull request #40315 from Calinou/project-manager-disable-file-loggingRémi Verschelde2020-07-141-15/+17
|\ \ \ \ \ \ | | | | | | | | | | | | | | Disable file logging for the project manager
| * | | | | | Disable file logging for the project managerHugo Locurcio2020-07-141-15/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Due to `user://` returning the current working directory when no project is open, this caused logs to be written to `$HOME` most of the time. This closes #40305.
* | | | | | | Merge pull request #40375 from Paulb23/fix_visual_shader_clearing_color_regionsRémi Verschelde2020-07-141-0/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fixed visual shader editor not clearing colour regions
| * | | | | | | Fixed visual shader editor not clearing colour regionsPaulb232020-07-141-0/+1
| | |/ / / / / | |/| | | | |
* | | | | | | Merge pull request #40374 from Faless/udp/server_abstractionRémi Verschelde2020-07-1412-105/+274
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | UDPServer uses single socket, abstract clients.
| * | | | | | | Reorganize ENet pactches.Fabio Alessandrelli2020-07-145-68/+77
| | | | | | | |
| * | | | | | | Funnel refuse_new_connections to Godot ENet.Fabio Alessandrelli2020-07-143-0/+15
| | | | | | | |
| * | | | | | | Document updated UDPServer interface.Fabio Alessandrelli2020-07-141-3/+17
| | | | | | | |
| * | | | | | | UDPServer handles PacketPeerUDP-client associationFabio Alessandrelli2020-07-144-35/+166
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | UDPServer now uses a single socket which is shared with the PacketPeerUDP it creates and has a new `poll` function to read incoming packets on that socket and delivers them to the appropriate peer. PacketPeerUDP created this way never reads from the socket, but are allowed to write on it using sendto. This is needed because Windows (unlike Linux/BSD) does not support packet routing when multiple sockets are bound on the same address/port.
* | | | | | | Merge pull request #40372 from akien-mga/close-those-po-or-filesRémi Verschelde2020-07-141-9/+13
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | PO loader: Fix unclosed files and error messages
| * | | | | | | PO loader: Fix unclosed files and error messagesRémi Verschelde2020-07-141-9/+13
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Trying to get `f->get_path()` after deleting `f` was not super clever :) Fixes #40324.
* | | | | | | Merge pull request #40371 from rcorre/warning-fixRémi Verschelde2020-07-142-33/+31
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Show gdscript warning in LSP without duplication.
| * | | | | | | Include gdscript warning name in LSP message.Ryan Roden-Corrent2020-07-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | My initial attempt changed this in the gdscript code, which resulted in a duplicate warning name in the builtin editor. We should just append the warning name in the LSP instead. This uses parens to match what is shown in the builtin editor.
| * | | | | | | Revert "Include gdscript warning name in the warning message."Ryan Roden-Corrent2020-07-141-32/+30
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | This reverts commit de3ad3b30ecb8de1aa112df7d61630102f077b5b.
* | | | | | | Merge pull request #40367 from akien-mga/scons-disable-werrorRémi Verschelde2020-07-141-2/+1
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | SCons: Do not enable werror=yes by default