Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-07-03 | Android: Refactor Custom Build options in export preset | Rémi Verschelde | |
Instead of reusing the custom_template/ prefix which is actually only used for the prebuilt APK workflow, we add a new custom_build/ prefix. This is a slight compat breakage (users will have to redo their config) but enables us to group the Min SDK and Target SDK options where they make sense, and avoid reusing the previously hardcoded Target SDK 30 from Godot 3.4. Those two options are now strings instead of integers so that we can keep them empty by default, and show their default value using a placeholder. So some validation has been added to make sure they are proper ints. The upper bound on Target SDK was also removed as it's a common use case to use it to try to target newer released SDKs. But we warn the user that this wasn't validated by us. The export info dialog is now exclusive so that when it doesn't auto-close, i.e. when it errors, you don't close it by mistake by clicking outside. Fixes #62465. | |||
2022-07-01 | Merge pull request #62603 from Calinou/gi-remove-debug-print | Rémi Verschelde | |
2022-07-01 | Merge pull request #62600 from Calinou/decal-fade-no-negative-values | Rémi Verschelde | |
2022-07-01 | Remove debugging print following GI reorganization | Hugo Locurcio | |
2022-07-01 | Merge pull request #62595 from python273/patch-1 | Rémi Verschelde | |
2022-07-01 | Clamp Decal's upper/lower fade to positive values | Hugo Locurcio | |
Negative easing values result in broken rendering. | |||
2022-07-01 | Merge pull request #62439 from timothyqiu/str-format | Rémi Verschelde | |
2022-07-01 | Stretch image on resize in asset description dialog | Kirill | |
2022-07-01 | Merge pull request #62594 from KoBeWi/docs_be_like-I'm_back | Rémi Verschelde | |
2022-07-01 | Restore and improve some ParticlesMaterial docs | kobewi | |
2022-07-01 | Merge pull request #62589 from KoBeWi/custom_threads | Rémi Verschelde | |
2022-07-01 | Handle custom Callables in Thread.start() | kobewi | |
2022-07-01 | Merge pull request #62587 from bruvzg/fix_m1_build | Rémi Verschelde | |
2022-07-01 | Merge pull request #59089 from KoBeWi/I_am_root | Rémi Verschelde | |
Add `root_subfolder` to FileDialog | |||
2022-07-01 | Add arch flag to assembler to fix build on ARM64 macOS / iOS. | bruvzg | |
2022-07-01 | Merge pull request #62551 from akien-mga/x11-check-fullscreen | Rémi Verschelde | |
Properly check for fullscreen toggle made through the Window Manager | |||
2022-07-01 | Merge pull request #62477 from lyuma/packedbytearray | Rémi Verschelde | |
Prevent out-of-bounds write in array conversion; avoid logspam on empty arrays. | |||
2022-06-30 | Prevent out-of-bounds write in array conversion; avoid logspam on empty arrays. | Lyuma | |
2022-07-01 | Merge pull request #62573 from KoBeWi/🥶 | Rémi Verschelde | |
2022-07-01 | Fix find_next_valid_focus() freeze | kobewi | |
2022-06-30 | Merge pull request #62540 from MinusKube/debugger-array-crash | Rémi Verschelde | |
Add/fix support for RID, Callable and Signal in editor properties | |||
2022-06-30 | Merge pull request #62567 from voylin/Print_Rich_fix_terminal_only | Rémi Verschelde | |
Fixing print_rich() which only displays correctly in terminal - Fixes #62560 | |||
2022-07-01 | Fixing Print_rich which only displays correctly in terminal | Voylin | |
There was an issue that the type was not passed through correctly. These couple of lines fix this issue and make print_rich work as expected. | |||
2022-06-30 | Merge pull request #62563 from RandomShaper/robust_binding_rw_determination | Rémi Verschelde | |
Use a more robust method of determining writability of bindings | |||
2022-06-30 | Use a more robust method of determining writability of bindings | Pedro J. Estébanez | |
2022-06-30 | Merge pull request #62555 from akien-mga/error-fallback-to-fprintf | Rémi Verschelde | |
2022-06-30 | Merge pull request #62557 from KoBeWi/find_next_valid_freeze | Rémi Verschelde | |
2022-06-30 | Add editor properties for Callable and Signal | MinusKube | |
2022-06-30 | Add serialization for RID and Signal | MinusKube | |
2022-06-30 | Fix find_next_valid_focus() freeze | kobewi | |
2022-06-30 | Errors: Fallback to `fprintf` if `OS` singleton doesn't exist | Rémi Verschelde | |
Otherwise we would crash if something prints an error before init or after destruction of the `OS` singleton which handles printing/logging. | |||
2022-06-30 | Merge pull request #61867 from Bromeon/refactor/property-info | Rémi Verschelde | |
2022-06-30 | Merge pull request #61096 from leogeier/expose-adding-resource-loaders-savers | Rémi Verschelde | |
2022-06-30 | Merge pull request #62550 from Bromeon/bugfix/cli-version-ok | Rémi Verschelde | |
2022-06-30 | Command line arguments '--version' and '--help' return exit code 0 instead ↵ | Jan Haller | |
of 255 Allows to detect whether those commands executed successfully, which makes integration with shell scripts/CI/bindings straightforward. | |||
2022-06-30 | Merge pull request #62299 from Calinou/texture-preview-add-mipmap-memory-usage | Rémi Verschelde | |
Mention mipmap and memory usage in the texture editor preview | |||
2022-06-30 | Properly check for fullscreen toggle made through the Window Manager | Wilson E. Alvarez | |
Fixes #40007. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2022-06-30 | Merge pull request #62542 from TechnoPorg/remove-scene-tree-dependency | Rémi Verschelde | |
2022-06-30 | Merge pull request #62531 from Faless/fix/4.x_assetlib_is_available | Rémi Verschelde | |
2022-06-29 | Remove SceneTree dependency from LocalDebugger | TechnoPorg | |
Core classes should not have dependencies on scene classes. | |||
2022-06-30 | Merge pull request #62538 from Calinou/movie-writer-split-pngwav | Rémi Verschelde | |
Split MovieWriterPNGWAV into its own file | |||
2022-06-30 | [AssetLib] Fix crash in Web editor. | Fabio Alessandrelli | |
Add EditorAssetLibrary::is_available which always returns false in the Web editor and use it in EditorNode for detection. | |||
2022-06-30 | Merge pull request #62511 from Chaosus/fix_doc_title_property | Rémi Verschelde | |
Fix `help_title_font_size` editor property to correctly apply to docs | |||
2022-06-30 | Merge pull request #62527 from smix8/navigation_agent_property_groups | Rémi Verschelde | |
Group NavigationAgent properties | |||
2022-06-30 | Split MovieWriterPNGWAV into its own file | Hugo Locurcio | |
This makes its organization consistent with MovieWriterMJPEG. | |||
2022-06-29 | Exposes methods for adding and removing ResourceFormatLoaders and -Savers in ↵ | leogeier | |
the ClassDB | |||
2022-06-29 | Merge pull request #62084 from smix8/path_debug_options_4.x | Rémi Verschelde | |
Add Path2D/3D debug options | |||
2022-06-29 | GDExtension: reuse code with constructor PropertyInfo(const ↵ | Jan Haller | |
GDNativePropertyInfo&) | |||
2022-06-29 | Group NavigationAgent properties | smix8 | |
Groups the ill-defined NavigationAgent properties between pathfinding and avoidance to make it more clear which property affects what. | |||
2022-06-29 | Mention mipmap and memory usage in the texture editor preview | Hugo Locurcio | |
This is important to quickly determine if a texture is using unexpectedly high amounts of memory, or to troubleshoot why mipmap sampling modes have no effect on it. - Improve readability by increasing outline size and reducing font size to match the rest of the editor UI. |