Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix XR Android manifest metadata | Fredia Huya-Kouadio | 2022-01-26 | 1 | -14/+0 |
| | | | | | - Adds the parameters for supported Meta devices, which is required to access some device specific capabilities - Remove the 'com.samsung.android.vr.application.mode' metadata | ||||
* | Merge pull request #47522 from madmiraal/rename-test_width-test_height | Rémi Verschelde | 2022-01-18 | 1 | -1/+1 |
|\ | |||||
| * | Rename Project Window width and height settings to match their function | Marcel Admiraal | 2022-01-04 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #56673 from winterpixelgames/bugfix-android-keystore-paths | Rémi Verschelde | 2022-01-12 | 1 | -0/+10 |
|\ \ | |||||
| * | | Android export plugin passes absolute file paths to gradle for keystores. | Jason Knight | 2022-01-10 | 1 | -0/+10 |
| | | | |||||
* | | | Fix decoding UTF-8 filenames on unzipping. | bruvzg | 2022-01-05 | 1 | -2/+2 |
| |/ |/| | |||||
* | | Update copyright statements to 2022 | Rémi Verschelde | 2022-01-03 | 1 | -2/+2 |
| | | | | | | | | Happy new year to the wonderful Godot community! | ||||
* | | Merge pull request #43181 from nathanfranke/string-empty | Rémi Verschelde | 2021-12-10 | 1 | -11/+11 |
|\ \ | | | | | | | Replace String comparisons with "", String() to is_empty() | ||||
| * | | Replace String comparisons with "", String() to is_empty() | Nathan Franke | 2021-12-09 | 1 | -11/+11 |
| | | | | | | | | | | | | | | | | | | Also: - Adds two stress tests to test_string.h - Changes to .empty() on std::strings | ||||
* | | | Merge pull request #55767 from m4gr3d/config_hand_tracking_frequency_master | Rémi Verschelde | 2021-12-09 | 1 | -4/+18 |
|\ \ \ | |||||
| * | | | Add support for configuring the xr hand tracking frequency mode | ne0fhyk | 2021-12-09 | 1 | -4/+18 |
| |/ / | |||||
* | | | Merge pull request #55759 from m4gr3d/enable_exclude_from_recents_master | Rémi Verschelde | 2021-12-09 | 1 | -0/+6 |
|\ \ \ | |||||
| * | | | Enable configuration of the `android:excludeFromRecents` activity attribute. | Fredia Huya-Kouadio | 2021-12-09 | 1 | -0/+6 |
| |/ / | |||||
* / / | Add configs to specify the min and target sdk versions. | Fredia Huya-Kouadio | 2021-12-08 | 1 | -3/+36 |
|/ / | |||||
* | | Rename `remove()` to `remove_at()` when removing by index | Lightning_A | 2021-11-23 | 1 | -1/+1 |
| | | |||||
* | | Add support for OpenXR export configurations. | Fredia Huya-Kouadio | 2021-11-20 | 1 | -11/+41 |
| | | |||||
* | | Drop pointless Android depth buffer setting | Pedro J. Estébanez | 2021-11-15 | 1 | -7/+0 |
| | | |||||
* | | Merge pull request #54463 from RandomShaper/fix_gl3_32bits | Rémi Verschelde | 2021-11-09 | 1 | -4/+5 |
|\ \ | |/ |/| | |||||
| * | Drop broken Android 32-bit framebuffer setting for a reliable one for depth ↵ | Pedro J. Estébanez | 2021-11-01 | 1 | -4/+5 |
| | | | | | | | | buffer | ||||
* | | Fix new projects always being created with OpenGL | Hugo Locurcio | 2021-11-01 | 1 | -2/+2 |
|/ | | | | | | | | Only Vulkan is fully implemented for now, so OpenGL isn't available in the project manager yet. This also makes the rendering driver checks use lowercase names everywhere for consistency. | ||||
* | Use OpenGL 3.3 core profile instead of compatibility profile | Clay John | 2021-10-31 | 1 | -1/+1 |
| | | | | | | | | | | - Rename OpenGL to GLES3 in the source code per community feedback. - The renderer is still exposed as "OpenGL 3" to the user. - Hide renderer selection dropdown until OpenGL support is more mature. - The renderer can still be changed in the Project Settings or using the `--rendering-driver opengl` command line argument. - Remove commented out exporter code. - Remove some OpenGL/DisplayServer-related debugging prints. | ||||
* | Rename GLES2 driver to OpenGL to prepare for the upgrade to GLES3 | Hugo Locurcio | 2021-10-30 | 1 | -1/+1 |
| | | | | | - Use lowercase driver names for the `--rendering-driver` command line argument. | ||||
* | clang-format: Various fixes to comments alignment from `clang-format` 13 | Rémi Verschelde | 2021-10-28 | 1 | -13/+8 |
| | | | | All reviewed manually and occasionally rewritten to avoid bad auto formatting. | ||||
* | Build for 64-bit ARM by default when compiling or exporting for Android | Hugo Locurcio | 2021-10-12 | 1 | -3/+5 |
| | | | | | | | All Android devices that support Vulkan support 64-bit ARM. This also removes NEON opt-out code for ARMv7 as pretty much all ARMv7 devices also support NEON. | ||||
* | Pass the correct `export_format` argument to locate the assets directory ↵ | ne0fhyk | 2021-10-11 | 1 | -4/+3 |
| | | | | when exporting. | ||||
* | Add support for Play Asset Delivery. | ne0fhyk | 2021-09-15 | 1 | -5/+25 |
| | | | | This only adds support for a subset of Play Asset Delivery: this causes a single install-time asset pack to always be present, but doesn't add support for dynamically downloaded asset packs. | ||||
* | Merge pull request #47391 from Calinou/platform-feature-tags-lowercase | Juan Linietsky | 2021-09-07 | 1 | -1/+1 |
|\ | | | | | Make platform feature tag names lowercase | ||||
| * | Make platform feature tag names lowercase | Hugo Locurcio | 2021-08-31 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Feature tag names are still case-sensitive, but this makes built-in feature tags more consistent. - `Windows` -> `windows` - `OSX` -> `osx` - `LinuxBSD` -> `linuxbsd` - `Android` -> `android` - `iOS` -> `ios` - `HTML5` -> `html5` - `JavaScript` -> `javascript` - `UWP` -> `uwp` | ||||
* | | Merge pull request #52159 from m4gr3d/addoculus_openxr_ | Fredia Huya-Kouadio | 2021-09-01 | 1 | -0/+5 |
|\ \ | |/ |/| | Update the AndroidManifest to enable access to Oculus OpenXR runtime | ||||
| * | Update the AndroidManifest to enable access to Oculus OpenXR runtime. | ne0fhyk | 2021-08-27 | 1 | -0/+5 |
| | | |||||
* | | Rename String::is_rel_path to String::is_relative_path | Wilson E. Alvarez | 2021-08-29 | 1 | -1/+1 |
|/ | |||||
* | Merge pull request #49756 from ↵ | Michael Alexsander | 2021-08-22 | 1 | -3/+1 |
|\ | | | | | | | | | Calinou/android-export-move-clear-previous-install-setting Move the Android "clear previous install" setting to Editor Settings | ||||
| * | Move the Android "clear previous install" setting to Editor Settings | Hugo Locurcio | 2021-08-16 | 1 | -3/+1 |
| | | | | | | | | | | This means the setting now applies to every project deployed from the editor, rather than being per-export preset. | ||||
* | | Add partial support for Android scoped storage. | ne0fhyk | 2021-08-16 | 1 | -2/+16 |
|/ | | | | | This is done by providing API access to app specific directories which don't have any limitations and allows us to bump the target sdk version to 30. In addition, we're also bumping the min sdk version to 19 as version 18 is no longer supported by Google Play Services and only account of 0.3% of Android devices. | ||||
* | Add support for prompting the user to retain app data on uninstall. | Fredia Huya-Kouadio | 2021-08-12 | 1 | -0/+6 |
| | | | | Supported on Android 10 and higher. | ||||
* | Split android platform export template into multiple files | Sergey Minakov | 2021-08-12 | 1 | -0/+2945 |