Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
This "breaks" our loading bar logic (libraries are not counted).
Fixing it is non trivial and probably deserves investigating a different
strategy.
|
|
|
|
|
|
Add files to create a Windows editor installer using Inno Setup
|
|
Added plugin configuration.
Export options now use plugins that could be enabled/disabled.
Plugin changes are observed at runtime.
|
|
Moved previously builtin modules 'GameCenter', 'AppStore', 'iCloud' to separate modules to be represented as plugin.
Modified 'ARKit' and 'Camera' to not be builtin into engine and work as plugin.
Changed platform code so it's not affected by the move.
Modified Xcode project file to remove parameters that doesn't make any effect.
Added basic '.gdip' plugin config file.
|
|
This decreases the editor binary size by about 8 KB.
|
|
This partially addresses
https://github.com/godotengine/godot-proposals/issues/1432.
To fully address the proposal above, official Windows installers will
have to be compiled and distributed.
|
|
|
|
Enabled ARC for iOS.
Weakify/Strongify macros for objc blocks.
Removed old version checks.
Specific types for ObjC++ modules to exclude unneeded bridging.
Separate DeviceMetrics class for device specific data.
Replaced old/deprecated functionality.
|
|
|
|
|
|
|
|
|
|
changed from public.data to public.script
|
|
|
|
Add VMA to iphone platform Use linkflag for iphone building to enforce static linking. Works fine with dynamic '.framework' library
Updated xcode project to use '.a' static library
|
|
|
|
|
|
Optimize the default iOS splash images
|
|
|
|
There were a lot of SVG files changed by file_format.sh
|
|
Command used:
parallel oxipng -o6 --strip --zopfli ::: **/*.png
This saves about 14 KB in total.
|
|
|
|
[4.0] Add support of iOS's dynamic libraries to GDNative
|
|
|
|
|
|
|
|
|
|
"Bundle Identifier" is more well-understood among macOS and iOS
developers and is less ambiguous.
This is a slight breaking change as export presets will need to be
updated to account for this change.
See https://github.com/godotengine/godot-docs/pull/3295.
|
|
|
|
|
|
See <https://www.hadess.net/2020/05/dual-gpu-support-launch-on-discrete-gpu.html>
for more information on this newly added `.desktop` entry property.
|
|
This makes the project title display without having to wait for
the project to finish loading.
|
|
|
|
UTF-8, LF, no BOM, and newlines at the end of files
|
|
As per #36436, we now need C++17's guaranteed copy elision feature to
solve ambiguities in Variant.
Core developers discussed the idea to move from C++14 to C++17 as our
minimum required C++ standard, and all agreed. Note that this doesn't
mean that Godot is going to be written in "modern C++", but we'll use
modern features where they make sense to simplify our "C with classes"
codebase. Apart from new code written recently, most of the codebase
still has to be ported to use newer features where relevant.
Proper support for C++17 means that we need recent compiler versions:
- GCC 7+
- Clang 6+
- VS 2017 15.7+
Additionally, C++17's `std::shared_mutex` (conditionally used by
`vk_mem_alloc.h` when C++17 support is enabled) is only available in
macOS 10.12+, so we increase our minimum supported version.
|
|
|
|
Due to the port to Vulkan and complete redesign of the rendering backend,
the `drivers/gles3` code is no longer usable in this state and is not
planned to be ported to the new architecture.
The GLES2 backend is kept (while still disabled and non-working) as it
will eventually be ported to serve as the low-end renderer for Godot 4.0.
Some GLES3 features might be selectively ported to the updated GLES2
backend if there's a need for them, and extensions we can use for that.
So long, OpenGL driver bugs!
|
|
Initial Vulkan support for Windows.
Initial Vulkan support for macOS.
|
|
Export and reference the icon as favicon when exporting to HTML5
|
|
Cf. https://github.com/godotengine/build-containers
A user-friendly tool using those containers will soon be released and
documented.
|
|
This makes the project icon display immediately as a favicon when
opening the page, without having to wait for the project to finish
loading.
|
|
No peace for the weary. :)
|
|
|
|
|
|
This provides rich autocompletion when using Godot's command line
interface.
|