summaryrefslogtreecommitdiffstats
path: root/platform/ios
Commit message (Collapse)AuthorAgeFilesLines
...
* | clang-tidy: Enforce `modernize-use-nullptr`Thaddeus Crews2024-03-121-1/+1
| |
* | Merge pull request #82084 from ogapo/pr/pck-cache-mergeRémi Verschelde2024-03-111-1/+1
|\ \ | | | | | | | | | Merge `uid_cache.bin` and `global_script_class_cache.cfg` after mounting PCKs
| * | Merge uid_cache.bin and global_script_class_cache.cfg after mounting PCKsDavid Nikdel2024-03-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fixes godotengine#82061 fixes godotengine#61556 Also, distinguish between main pack and DLC packs. It's desirable to downloaded content to be as small as possible. This change avoids bloating non-main pack files with new versions of resources that are all read on startup and never used again. They have no effect if loaded after startup. - project.godot/project.binary file - extension_list.cfg - app icon and boot_splash - .ico and .icns files (these can still be opted in for DLC by listing them explicitly in the include filter)
* | | Merge pull request #89365 from Repiteo/scons/run_in_subprocess-to-env.RunRémi Verschelde2024-03-101-1/+1
|\ \ \ | | | | | | | | | | | | SCons: Convert remaining `run_in_subprocess` to `env.Run`
| * | | SCons: Convert remaining `run_in_subprocess` to `env.Run`Thaddeus Crews2024-03-101-1/+1
| | |/ | |/|
* / | [iOS] Restore backward compatibility with old export templates.bruvzg2024-03-101-0/+4
|/ /
* / Move `global_menu_*` methods to a separate `NativeMenu` class.bruvzg2024-03-042-1/+12
|/
* Fix low volume sound output on iOS when Play and Record category is used.Leonardo Demartino2024-02-291-5/+7
|
* Fix crash on documentation generation on macOS.bruvzg2024-02-191-1/+3
|
* Merge pull request #88245 from shana/simplify-mono-support-detectionRémi Verschelde2024-02-191-0/+1
|\ | | | | | | C#: Let platforms signal if they support the mono module or not
| * C#: Let platforms signal if they support it or notAndreia Gaita2024-02-131-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Instead of hardcoding platform names that support C#, let platforms set a flag indicating if they support it. All public platforms except web already support it, and it's a pain to maintain a patch for this list just to add additional names of proprietary console platforms. This makes adding new platforms or variants or existing platforms much easier, as the platform can signal what it supports/doesn't support directly, and we can avoid harcoding platform names.
* | Merge pull request #87823 from KoBeWi/ban_adbRémi Verschelde2024-02-172-3/+35
|\ \ | | | | | | | | | Don't invoke adb with no runnable Android preset
| * | Don't invoke adb with no runnable Android presetkobewi2024-02-152-3/+35
| | |
* | | Merge pull request #86966 from Muller-Castro/value2ref-coreRémi Verschelde2024-02-152-6/+6
|\ \ \ | | | | | | | | | | | | Add const lvalue ref to `core/*` container parameters
| * | | Add const lvalue ref to core/* container parametersMuller-Castro2024-02-142-6/+6
| | | |
* | | | SCons: "Environment" to "SConsEnvironment"Thaddeus Crews2024-02-141-2/+2
|/ / /
* | | Merge pull request #85100 from ztc0611/fix-ios-focus-mainloop-notifsRémi Verschelde2024-02-143-0/+39
|\ \ \ | | | | | | | | | | | | Enhance mobile suspend MainLoop notifications
| * | | Enhance mobile suspend MainLoop NotificationsZach Coleman2024-02-043-0/+39
| |/ /
* | | Add method to get "base" system UI color (macOS/Windows) and system theme ↵bruvzg2024-02-133-2/+33
| | | | | | | | | | | | change callback.
* | | Merge pull request #87999 from bruvzg/metal_layerRémi Verschelde2024-02-133-9/+9
|\ \ \ | | | | | | | | | | | | [macOS / iOS] Switch Vulkan init to `VK_EXT_metal_surface` extension.
| * | | [macOS / iOS] Switch Vulkan init to VK_EXT_metal_surface extension.bruvzg2024-02-133-9/+9
| | | |
* | | | Merge pull request #87908 from bruvzg/mac_gen_plistRémi Verschelde2024-02-131-2/+8
|\ \ \ \ | | | | | | | | | | | | | | | [macOS] Generate min. `Info.plist` for frameworks if it's missing. Validate framework bundle ID characters.
| * | | | [macOS] Generate min. Info.plist for frameworks if it's missing. Validate ↵bruvzg2024-02-031-2/+8
| | |/ / | |/| | | | | | | | | | framework bundle ID characters.
* | | | [iOS/macOS] Add option to automatically build (and sign / archive) bundles.bruvzg2024-02-132-0/+63
| |/ / |/| |
* | | Finish splitting functionality of the Vulkan and D3D12 backends into ↵Dario2024-02-126-52/+65
| | | | | | | | | | | | RenderingDeviceDriver.
* | | Merge pull request #82800 from Sauermann/fix-screen-mousemotionRémi Verschelde2024-02-091-0/+1
|\ \ \ | | | | | | | | | | | | Add screen-related attributes to mouse input events
| * | | Add screen-related attributes to mouse input eventsMarkus Sauermann2024-02-051-0/+1
| |/ /
* | | Merge pull request #86843 from RandomShaper/fix_null_ptrRémi Verschelde2024-02-071-2/+4
|\ \ \ | |/ / |/| | | | | Avoid several null-dereferences of ApiContextRD
| * | Avoid several null-dereferences of ApiContextRDPedro J. Estébanez2024-02-061-2/+4
| |/
* | Add InputEventKey.location to tell left from rightMel Collins2024-01-266-9/+35
| | | | | | | | | | | | | | | | | | | | This adds a new enum `KeyLocation` and associated property `InputEventKey.location`, which indicates the left/right location of key events which may come from one of two physical keys, eg. Shift, Ctrl. It also adds simulation of missing Shift KEYUP events for Windows. When multiple Shifts are held down at the same time, Windows natively only sends a KEYUP for the last one to be released.
* | Reorganize code related to editor themingYuri Sizov2024-01-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | This change introduces a new EditorThemeManager class to abstract theme generatio and its subroutines. Logic related to EditorTheme, EditorColorMap, and editor icons has been extracted into their respective files with includes cleaned up. All related files have been moved to a separate folder to better scope them in the project. This includes relevant generated files as well.
* | [iOS export] Improve .xcframework exporting.bruvzg2024-01-112-95/+282
| | | | | | | | | | Do not embed static .xcframeworks. Automatically convert .xcframeworks with .dylibs to .xcframeworks with .frameworks.
* | [macOS/iOS export] Add option to set custom Info.plist data.bruvzg2024-01-112-0/+32
| |
* | Merge pull request #87077 from bruvzg/ios_loggerRémi Verschelde2024-01-114-6/+122
|\ \ | | | | | | | | | [iOS] Improve logger.
| * | [iOS] Improve logger.bruvzg2024-01-114-6/+122
| | | | | | | | | | | | | | | Stream errors to the Console.app (and highlight in Xcode). Prevent duplicate prints in Xcode.
* | | set provisioning style for both "iPhone Developer" and "iPhone Distribution" ↵Sassan Haradji2024-01-111-2/+2
|/ / | | | | | | to automatic
* | [iOS export] Add export options for performance capabilities and min. iOS ↵bruvzg2024-01-042-1/+23
| | | | | | | | version.
* | Merge pull request #84445 from Rubonnek/add-const-references-clang-tidyRémi Verschelde2024-01-041-1/+1
|\ \ | | | | | | | | | Add const references detected by clang-tidy
| * | Add const references detected by clang-tidyWilson E. Alvarez2023-12-161-1/+1
| | |
* | | Merge pull request #86312 from bruvzg/ios_fix_screen_resRémi Verschelde2024-01-033-202/+8
|\ \ \ | | | | | | | | | | | | [iOS] Remove deprecated LaunchImages support and switch to Storyboard by default.
| * | | [iOS] Remove deprecated LaunchImages support and switch to Storyboard by ↵bruvzg2023-12-183-202/+8
| |/ / | | | | | | | | | default.
* | | Merge pull request #86682 from ↵Rémi Verschelde2024-01-021-0/+2
|\ \ \ | | | | | | | | | | | | | | | | | | | | Daylily-Zeleen/daylily-zeleen/distinguish_between_dynamic_libaray_not_found_and_can't_open Distinguish between dynamic library not found and can't be opened.
| * | | Distinguishs between dynamic library not found and can't be opened.Daylily-Zeleen2024-01-011-0/+2
| | |/ | |/|
* / | Add RD_ENABLED when VULKAN_ENABLED or D3D12_ENABLED is addedjsjtxietian2023-12-251-1/+1
|/ /
* / Split RenderingDevice into API-agnostic and RenderingDeviceDriver partsPedro J. Estébanez2023-12-206-55/+75
|/ | | | | | Credit and thanks to @bruzvg for multiple build fixes, update of 3rd-party items and MinGW support. Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com>
* Remove unnecessary assignmentsWilson E. Alvarez2023-12-131-2/+1
| | | | Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
* Merge pull request #85546 from bruvzg/devicectl_supportYuri Sizov2023-12-082-36/+134
|\ | | | | | | [iOS one-click] Add support for Xcode 15 devicectl.
| * [iOS one-click] Add support for Xcode 15 devicectl.bruvzg2023-11-302-36/+134
| |
* | Merge pull request #85845 from YuriSizov/editor-export-hidden-errorsYuri Sizov2023-12-081-47/+87
|\ \ | | | | | | | | | Ensure more export errors are reported to users
| * | Ensure more export errors are reported to usersYuri Sizov2023-12-061-47/+87
| | | | | | | | | | | | | | | | | | | | | Also fixes the timing issue when exporting all presets at the same time, where the error report would try to appear while the progress dialog was still visible.