summaryrefslogtreecommitdiffstats
path: root/core/config
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@9e6098432aac35bae42c9089a29ba2a80320d823Spartan3222024-11-201-4/+7
|\
| * Revert "Fix InputEvent device id clash" and add a compatibility functionMarkus Sauermann2024-11-201-4/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 916d480686e339746ac4fc89079c26fe72caad53. Revert "Fix InputEvent crash when opening project" This reverts commit abb9c0f171c7150a510ca2c2a744534f1746635d. Introduce a compatibility function for projects affected by the device id clash reversal Since the reverted PR introduced changes in the project.godot file, it seems prudent to introduce a compatibility function for such affected projects.
* | Merge commit godotengine/godot@fd4c29a189e53a1e085df5b9b9a05cac9351b3efSpartan3222024-11-191-4/+10
|\|
| * Merge pull request #99286 from KoBeWi/uid_in_a_path_factoryThaddeus Crews2024-11-181-0/+6
| |\ | | | | | | | | | Support uid:// in more places
| | * Support uid:// in more placeskobewi2024-11-161-0/+6
| | |
| * | Use `(r)find_char` instead of `(r)find` for single charactersA Thousand Ships2024-11-171-4/+4
| |/
* | Merge commit godotengine/godot@6c05ec3d6732cac44cf85c91db7d3fd1075bcb23Spartan3222024-11-151-1/+1
|\|
| * Replace default deadzone magic number with named constantMalcolm Anderson2024-11-121-1/+1
| |
* | Merge commit godotengine/godot@c6c464cf9ae56e8b68620af65125dd980d0e8122Spartan3222024-11-023-21/+34
|\|
| * Merge pull request #98091 from AThousandShips/improve_err_prints_coreThaddeus Crews2024-10-311-21/+21
| |\ | | | | | | | | | [Core] Improve error messages with `vformat`
| | * [Core] Improve error messages with `vformat`A Thousand Ships2024-10-301-21/+21
| | |
| * | Add "Game" editor for better runtime debuggingMichael Alexsander2024-10-302-0/+13
| |/
* | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-302-1/+10
|\|
| * Merge pull request #96439 from darksylinc/matias-TheForge-pr03-rebasedClay John2024-10-292-0/+10
| |\ | | | | | | Add Swappy & Pre-Transformed Swapchain
| | * Add Swappy & Pre-Transformed SwapchainMatias N. Goldberg2024-10-282-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Adds Swappy for Android for stable frame pacing - Implements pre-transformed Swapchain so that Godot's compositor is in charge of rotating the screen instead of Android's compositor (performance optimization for phones that don't have HW rotator) ============================ The work was performed by collaboration of TheForge and Google. I am merely splitting it up into smaller PRs and cleaning it up. Changes from original PR: - Removed "display/window/frame_pacing/android/target_frame_rate" option to use Engine::get_max_fps instead. - Target framerate can be changed at runtime using Engine::set_max_fps. - Swappy is enabled by default. - Added documentation. - enable_auto_swap setting is replaced with swappy_mode.
* | | Merge pull request #818 from Spartan322/fixup/copyright-headersGeorge L. Albany2024-10-274-8/+8
|\ \ \ | | | | | | | | Fix copyright headers referring to Godot
| * | | Fix copyright headers referring to GodotSpartan3222024-10-274-8/+8
| | | |
* | | | Merge commit godotengine/godot@61accf060515416da07d913580419fd8c8490f7bSpartan3222024-10-263-3/+15
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | Merge pull request #98425 from darksylinc/matias-breadcrumbs-race-fixThaddeus Crews2024-10-252-0/+12
| |\ \ | | | | | | | | | | | | Fix race conditions in breadcrumbs
| | * | Fix race conditions in breadcrumbsMatias N. Goldberg2024-10-222-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds "--accurate-breadcrumbs" CLI command Additionally, leave out breadcrumbs code in non-debug, non-dev builds. Fix regression introduced in #98388 where command_insert_breadcrumb() is called even in non-debug builds. Fixes #98338
| * | | Fix InputEvent crash when opening projectkobewi2024-10-241-3/+3
| |/ /
* | | Fix VERSION_FULL_CONFIG ignoring status versioningSpartan3222024-10-231-2/+1
| | | | | | | | | | | | (cherry picked from commit cb0d3f7aa0c51edcf230a8fb8a53c8845f1335da)
* | | Merge commit godotengine/godot@b3bcb2dc14691f7729984128dca26a844f662fa1Spartan3222024-10-221-0/+18
|\| |
| * | Merge pull request #97005 from Repiteo/core/window-corner-styleThaddeus Crews2024-10-211-0/+1
| |\ \ | | | | | | | | | | | | Core: Add `DisplayServer` flag for sharp corners
| | * | Core: Add `DisplayServer` flag for sharp cornersThaddeus Crews2024-10-181-0/+1
| | |/
| * | Merge pull request #97707 from Sauermann/fix-input-device-clashThaddeus Crews2024-10-211-0/+17
| |\ \ | | |/ | |/| | | | Fix `InputEvent` device id clash
| | * Fix InputEvent device id clashMarkus Sauermann2024-10-201-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `InputMap::ALL_DEVICES` and `InputEvent::DEVICE_ID_EMULATION` have the same value `-1`. Change value of `InputMap::All_DEVICES` so that it's different from `InputEvent::DEVICE_ID_EMULATION`. `InputEvent::DEVICE_ID_EMULATION` is part of the API and can't be changed without potentially breaking projects. Gather all special device constants in a single location inside `InputEvent`. Add a converter to project settings, that takes care of adjusting project files during loading.
* | | Merge pull request #682 from Spartan322/redot-add/status-versionGeorge L. Albany2024-10-151-1/+9
|\ \ \ | | | | | | | | Add status_version to versioning
| * | | Bump version to 4.4-alpha.2Spartan3222024-10-141-1/+9
| | | | | | | | | | | | | | | | | | | | Add status_version to version.py Update Engine.xml example for get_godot_compatible_version_info
* | | | Merge commit godotengine@92e51fca7247c932f95a1662aefc28aca96e8de6Spartan3222024-10-141-12/+6
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | Fix implementation of property_can_revert() in various classeskobewi2024-10-041-12/+6
| | |
* | | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-114-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* | | Rebrand Godot to RedotRandolph W. Aarseth II2024-10-113-7/+55
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Linux Editor tests workflow matrix Add Windows Editor w/ Mono workflow matrix Add Generate Glue Code job to Windows workflow Add Build GodotSharp job to Windows workflow Add godot compatibility version references Add Godot author info Add Godot version compatibility info Add Godot donor info Add Godot authors and donors to editor_about.cpp Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* | Partially revert 96780, remove warnings from project/editor settings `_get`.bruvzg2024-10-041-1/+0
| |
* | Merge pull request #97281 from reptofrog/deadzone-new-defaultRémi Verschelde2024-10-021-1/+1
|\ \ | |/ |/| | | Input: Change the default deadzone value for new actions from 0.5 to 0.2
| * Changed the default deadzone value for new actions from 0.5 to 0.2Roman Morozov2024-10-011-1/+1
| |
* | SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
| |
* | [Core] Add `Engine.print_to_stout` setting to control printingA Thousand Ships2024-09-222-0/+11
|/ | | | | Also added notes to the related project settings pointing to the `Engine` properties.
* Fix path error when saving ProjectSettingskobewi2024-09-171-1/+2
|
* Merge pull request #95048 from KoBeWi/keep_the_party_goingRémi Verschelde2024-08-271-4/+0
|\ | | | | | | Add `keep_screen_on` editor setting
| * Add keep_screen_on editor settingkobewi2024-08-021-4/+0
| |
* | Disable extra memory tracking by defaultMatias N. Goldberg2024-08-242-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR #90993 added several debugging utilities. Among them, advanced memory tracking through the use of custom allocators and VK_EXT_device_memory_report. However as issue #95967 reveals, it is dangerous to leave it on by default because drivers (or even the Vulkan loader) can too easily accidentally break custom allocators by allocating memory through std malloc but then request us to deallocate it (or viceversa). This PR fixes the following problems: - Adds --extra-gpu-memory-tracking cmd line argument - Adds missing enum entries to RenderingContextDriverVulkan::VkTrackedObjectType - Adds RenderingDevice::get_driver_and_device_memory_report - GDScript users can easily check via print( RenderingServer.get_rendering_device().get_driver_and_device_memory_report() ) - Uses get_driver_and_device_memory_report on device lost for appending further info. Fixes #95967
* | Merge pull request #94799 from ↵Rémi Verschelde2024-08-161-0/+5
|\ \ | | | | | | | | | | | | | | | m4gr3d/memory_allocation_cleanup_and_optimizations Android memory cleanup and optimizations
| * | Memory cleanup and optimizationsFredia Huya-Kouadio2024-08-161-0/+5
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | - Returns an empty list when there's not registered plugins, thus preventing the creation of spurious iterator objects - Inline `Godot#getRotatedValues(...)` given it only had a single caller. This allows to remove the allocation of a float array on each call and replace it with float variables - Disable sensor events by default. Sensor events can fired at 10-100s Hz taking cpu and memory resources. Now the use of sensor data is behind a project setting allowing projects that have use of it to enable it, while other projects don't pay the cost for a feature they don't use - Create a pool of specialized input `Runnable` objects to prevent spurious, unbounded `Runnable` allocations - Disable showing the boot logo for Android XR projects - Delete locale references of jni strings
* / [.NET] Move search in files extension list definition to be after Scene ↵bruvzg2024-08-141-9/+0
|/ | | | level module init.
* Replace .NET detection code with `ClassDB::class_exists("CSharpScript")`.bruvzg2024-07-231-1/+1
|
* GDScript: Fix "Mismatched external parser" for autoloadsDanil Alexeev2024-07-091-2/+2
|
* Merge pull request #91551 from m4rr5/configure_timestamp_query_elementsRémi Verschelde2024-07-071-0/+1
|\ | | | | | | Add a project setting to configure the maximum number of timestamps.
| * Added a project setting to configure the maximum amount of timestamps, with ↵Marcel Offermans2024-05-051-0/+1
| | | | | | | | a description and a reference to the setting when the limit is hit and an ERR_FAIL_COND is hit.
* | Add samples playback supportAdam Scott2024-06-181-0/+2
| |