| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|\
| |
| |
| | |
Fix detecting when Gradle is invoked from Studio
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The existing 'idea.platform.prefix' system-property approach
only worked because of a Android Studio bug that leaks the
system properties from Android Studio into Gradle build:
- https://issuetracker.google.com/201075423
This bug was fixed in Android Studio 2023.3.1 (Jellyfish).
The correct way of identifying builds from Android Studio is to
use the following project property (not system property):
- android.injected.invoked.from.ide
|
|\ \
| | |
| | |
| | | |
[Windows] Use CRLF in the terminal prints.
|
| | | |
|
| |/
|/| |
|
|/ |
|
| |
|
|\
| |
| |
| | |
[X11] Fallback to root window size, when Xinerama extension is available, but return zero screens.
|
| |
| |
| |
| | |
but return zero screens.
|
|\ \
| |/
|/|
| | |
[macOS export] Add support for privacy manifest configuration.
|
| | |
|
|\ \
| | |
| | |
| | | |
[Web] Fix quotes style in HTML shell head include
|
| | | |
|
|/ /
| |
| |
| |
| |
| | |
Replace the use of WindowInsetsAnimation with WindowInsetsAnimationCompat; the former was only introdcued in api 30 and caused a crash on older versions of Android.
Fixes https://github.com/godotengine/godot/issues/91773
|
|\ \
| | |
| | |
| | | |
Set `execinfo=no` by default when compiling for Linux/*BSD
|
| | |
| | |
| | |
| | |
| | | |
Alpine 3.17 and later no longer provide execinfo in its repositories,
making compilation impossible unless you pass `execinfo=no`.
|
|\ \ \
| | | |
| | | |
| | | | |
SCons: Generate all scripts natively, implement wrapper function
|
| | | | |
|
| |/ /
|/| |
| | |
| | |
| | |
| | |
| | | |
This reverts commits ecebe0b40d4f3c645f2732b7b8f0f0cb5bc2ddff
and 15d37ed2a891c099858abcddc1a470563b3166a4.
Fixes #91710.
|
| | |
| | |
| | |
| | | |
loop iterations
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Replaces `find(...) != -1` with `contains` for `String`
* Replaces `find(...) == -1` with `!contains` for `String`
* Replaces `find(...) != -1` with `has` for containers
* Replaces `find(...) == -1` with `!has` for containers
|
|\ \ \
| | | |
| | | |
| | | | |
[MinGW] Restore executable size check.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Found by apply the file_format checks again via #91597.
|
|/ / / |
|
|\ \ \
| |/ /
|/| |
| | | |
Wayland: Workaround API limitation in screen/UI scale logic
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Mainly, this fixes auto UI scaling with _single-monitor_ fractional
setups (see the comment in `display_server_wayland.cpp` for more info).
This is the result of a bunch of current limitations, mainly the fact
that the UI scale is static (it's probed at startup) and the fact that
Wayland exposes fractional scales only at the window-level, by design.
The `screen_get_scale` special case should help in 99% of cases, while
the auto UI scale part will unfortunately only help with single-screen
situations, as multi-screen fractional scaling requires dynamic UI
scale changing.
|
|\ \ \
| | | |
| | | |
| | | | |
Windows: Fix `WINDOW_EVENT_FOCUS_IN` not delivered in some cases
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
[Windows] Fix NVIDIA app profile creation
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
When adding an executable to the NVIDIA profile created to disable
threaded optimization, wrong values were passed to `launcher` and
`fileInFolder` params, which resulted in 1) the NVIDIA driver not
applying the profile and 2) the app being repeatedly added to the
profile.
This patch fixes the faulty app creation params and deletes the
potentially corrupted profile if found.
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | | |
Reduce and prevent unnecessary random-access to `List`
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when
accessing a single element)
* Removed subscript operator, in favor of a more explicit `get`
* Added conversion from `Iterator` to `ConstIterator`
* Remade existing operations into other solutions when applicable
|
| |_|_|/ /
|/| | | |
| | | | |
| | | | | |
• Replaces "try_cmd" entirely and removes need for "get_mingw_bin_prefix" in isolation
|
|/ / / /
| | | |
| | | | |
Currently prints as `ANDROID_HOME is correct and cmdline-toolsare installed, or install NDK version`
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Add `PackedVector4Array` Variant type
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
|
|\ \ \ \ \
| |/ / / /
|/| | | |
| | | | | |
Wayland: Add support for OpenGL ES driver
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Everything was already there, we just had to wire it up in the display
server.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
Co-authored-by: m4gr3d <m4gr3d@users.noreply.github.com>
|
|/ / / / |
|
| | | |
| | | |
| | | |
| | | | |
Convenience for a number of cases operating on single values
|
| |/ /
|/| | |
|
|\ \ \
| | | |
| | | |
| | | | |
Fix for Android build on Windows
|
| | | | |
|
|\ \ \ \
| |_|_|/
|/| | |
| | | | |
[StatusIndicator] Switch API to use Texture2D instead of Image, improve handling on macOS, add method to set native popup menu directly.
|
| | | |
| | | |
| | | |
| | | | |
handling on macOS, add method to set native popup menu directly.
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Splash image support and new progress bar for HTML5 Web Export
|