Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-07-22 | Merge pull request #62581 from Guh-Feng/Color-Picker-Update | Rémi Verschelde | |
2022-07-22 | Merge pull request #62478 from BastiaanOlij/split_effects_20220628 | Rémi Verschelde | |
2022-07-22 | Merge pull request #63313 from python273/fix-xr-doc-links | Rémi Verschelde | |
2022-07-22 | Merge pull request #63093 from aaronfranke/export-templates-dir | Rémi Verschelde | |
2022-07-22 | Merge pull request #63331 from Calinou/doc-font-get-string-size-example | Rémi Verschelde | |
2022-07-22 | Merge pull request #63321 from kleonc/generic-nodepath-drag-and-drop-fix | Rémi Verschelde | |
2022-07-22 | Add example usage for `Font.get_string_size()` | Hugo Locurcio | |
The font size is now separated from the font itself, so it makes sense to have an example for people coming from Godot 3.x. | |||
2022-07-22 | Rename directory for export templates from templates to export_templates | Aaron Franke | |
2022-07-22 | Fix in editor drag and dropping a `Node` to generic `NodePath` property | kleonc | |
2022-07-22 | Merge pull request #63310 from akien-mga/scons-vsproj-windows | Rémi Verschelde | |
SCons: Prevent using `vsproj` option outside Windows | |||
2022-07-22 | Merge pull request #63317 from dallonf/redundant-gdscript-errors | Rémi Verschelde | |
2022-07-22 | Don't print redundant errors when parsing GDScript | Dallon Feldner | |
The error macros print a generic error, which isn't necessary, and could be confusing to end users. | |||
2022-07-22 | Fix tutorial links in XR classes docs | python273 | |
2022-07-22 | Merge pull request #63141 from reduz/implement-thread-runner | Rémi Verschelde | |
2022-07-22 | SCons: Prevent using `vsproj` option outside Windows | Rémi Verschelde | |
Fixes #63305. | |||
2022-07-22 | Merge pull request #62996 from reduz/feature-build-profiles | Rémi Verschelde | |
2022-07-22 | Implement a Worker ThreadPool | reduz | |
This PR implements a worked thread pool. It uses a fixed amount of threads in a pool and allows scheduling tasks that can be run on threads (and then waited for). It satisfies the following use cases: * HTML5 thread count is fixed (and similar restrictions are known in consoles) so we need to reuse threads. * Thread spawning is slow in general, so reusing threads is faster anyway. * This implementation supports recursive waiting for tasks, making it less prone to deadlocks if threads from the pool also run tasks. After this is approved and merged, subsequent PRs will be needed to replace the ThreadWorkPool usage by this class. | |||
2022-07-22 | Merge pull request #63278 from akien-mga/scons-linux-refactor-linker | Rémi Verschelde | |
2022-07-22 | Implement Feature Build Profiles | reduz | |
This PR is a continuation of #50381 (which was implemented exactly a year ago!) * Add a visual interface to select which classes should not be built into Godot (well, they are built if something else uses them, but if not used the optimizer will remove them out). * Add a detection system to scan the project and figure out the actual classes used. * Added the ability for SCons to load build profiles. Obligatory Screen: A simple test with a couple of nodes in the scene resulted in a 25% reduction for the final binary size TODO: * Script languages need to implement used class detection (left for another PR). * Options to disable servers or server functionalities (like 2D or 3D physics, navigation, etc). Are missing, that should also greatly aid in reducing binary size. * Options to disable some modules would be desired. * More options to disable drivers (OpenGL, Vulkan, etc) would be desired. In general this PR is a starting point for more contributors to improve and enhance this functionality. | |||
2022-07-22 | Merge pull request #63303 from hansemro/x11-eraser-case-insensitive | Rémi Verschelde | |
[X11] Do case-insensitive search for pen inversion detection | |||
2022-07-22 | Merge pull request #63302 from nathanfranke/rounded-svg | Rémi Verschelde | |
Round dimensions of SVG to work around floating point precision errors | |||
2022-07-21 | [X11] Do case-insensitive search for pen inversion detection | Hansem Ro | |
2022-07-21 | round dimensions of svg | Nathan Franke | |
2022-07-22 | SCons: Refactor Linux linker options with `linker=<bfd|gold|lld|mold>` | Rémi Verschelde | |
The new option is `linker` and lets the user specify the argument to the`-fuse_ld=` linker flag directly. The supported options are: - `default`: No change, typically uses GNU ld (bfd) unless the user or distro picked a different default `/usr/bin/ld`. - `bfd`: GNU ld from binutils - `gold`: GNU gold from binutils - `lld`: lld from LLVM - `mold`: mold, an extremely fast modern linker, not (yet) intended for use in production but great for development speed. Provided by distro `mold` package or needs to be compiled from source and installed to `/usr` otherwise. Removes the `use_lld=yes` option, and make lld actually usable with GCC too. Not all the above are compatible or recommend for LTO, we recommend using GNU ld with GCC LTO, or lld with LLVM ThinLTO. | |||
2022-07-22 | Merge pull request #63295 from ↵ | Rémi Verschelde | |
winterpixelgames/master-allow-scroll-container-scroll-to-be-set-instantly | |||
2022-07-22 | Merge pull request #63286 from RandomShaper/fix_debugger_focus | Rémi Verschelde | |
2022-07-22 | Merge pull request #63300 from KoBeWi/local_speciality | Rémi Verschelde | |
2022-07-22 | Merge pull request #63242 from m4gr3d/fix_slow_copy_main | Rémi Verschelde | |
Address slow copy performance when using the `FileAccessFilesystemJAndroid` implementation | |||
2022-07-21 | Color Pickers Respect Settings | Guh-Feng | |
Updated editor_node with function that sets up color pickers throughout Godot to respect editor's settings. | |||
2022-07-21 | Fix node dragging not working when dock is moved | kobewi | |
2022-07-21 | Fix editor re-focus on debugger break on Windows | Pedro J. Estébanez | |
2022-07-21 | Merge pull request #63289 from Chaosus/code_style_tolerance | Yuri Rubinsky | |
Rename `epsilon` to `tolerance` in the `Plane::has_point` method | |||
2022-07-21 | Call update_scrollbars() in sort_children() so the max is set properly so ↵ | Jason Knight | |
you can set scroll_container.scroll_vertical instantly after adding children to a scroll container. | |||
2022-07-21 | Rename `epsilon` to `tolerance` in the `Plane::has_point` method | Yuri Rubinsky | |
2022-07-21 | Address slow copy performance when using the `FileAccessFilesystemJAndroid` ↵ | Fredia Huya-Kouadio | |
implementation. Read/write ops for this implementation are done through the java layer via jni, and so for good performance, it's key to avoid numerous repeated small read/write ops due the jni overhead. The alternative is to allocate a (conversatively-sized) large buffer to reduce the number of read/write ops over the jni boundary. | |||
2022-07-21 | Merge pull request #63128 from ↵ | Rémi Verschelde | |
cdemirer/fix-callable-comparator-error-message-argcount | |||
2022-07-21 | Merge pull request #62433 from KoBeWi/🌈 | Rémi Verschelde | |
2022-07-21 | Merge pull request #63244 from KoBeWi/canvas_picker | Rémi Verschelde | |
2022-07-21 | Merge pull request #63281 from luzpaz/typos | Rémi Verschelde | |
2022-07-21 | Fix various typos not caught by codespell | luz paz | |
Revert upstream `core/input/gamecontrollerdb.txt`. Upstream fix: https://github.com/gabomdq/SDL_GameControllerDB/pull/600 | |||
2022-07-21 | Merge pull request #63280 from bruvzg/macos_help_scr | Rémi Verschelde | |
2022-07-21 | [Export] Update generated CLI helper script to work on clean macOS Monterey ↵ | bruvzg | |
installation. | |||
2022-07-21 | Fix selection list in 2D editor | kobewi | |
2022-07-21 | Merge pull request #63225 from bruvzg/mac_rename | Rémi Verschelde | |
2022-07-21 | Merge pull request #63272 from akien-mga/ci-linux-san-lld | Rémi Verschelde | |
2022-07-21 | CI: Use Gold (GCC) and LLD (Clang) as linker for Linux sanitizers builds | Rémi Verschelde | |
They're very memory hungry to a point where GNU ld can crash on CI. Both Gold and LLD should be nicer to RAM and thus a safer option. | |||
2022-07-21 | Rename OSX to macOS and iPhoneOS to iOS. | bruvzg | |
2022-07-21 | Merge pull request #63264 from MinusKube/file-bad-icon-bug | Rémi Verschelde | |
Fix FileInfo::import_valid always being set to false for TextFile in some cases | |||
2022-07-20 | Fix FileInfo::import_valid always being set to false for TextFile in some cases | MinusKube | |
2022-07-20 | Merge pull request #63235 from kleonc/canvas-item-remove-from-canvas-group | Rémi Verschelde | |