Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-10-10 | Defer clearing of ResourceUID cache and silence warnings | kobewi | |
2022-10-07 | Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵ | bruvzg | |
change warnings=all to use /W4. | |||
2022-10-05 | Merge pull request #66886 from akien-mga/error-print-cleanup | Rémi Verschelde | |
Logger: Don't print error twice on `ERR_PRINT` | |||
2022-10-04 | Rename Projection `matrix` to `columns` | Aaron Franke | |
2022-10-04 | Logger: Don't print error twice on `ERR_PRINT` | Rémi Verschelde | |
Also fix broken `ERR_PRINT_ED` macro and simplify comments. For the record these macros aren't used yet, they're intended to be used where needed to surface messages in the toaster when useful to end users, but we haven't done that codebase review yet. | |||
2022-09-30 | Fix crash when executing `ResourceUID.set_id` | Haoyu Qiu | |
2022-09-29 | Use `constexpr` in the conditions with template parameters and `sizeof`s to ↵ | bruvzg | |
suppress C4127 warnings. | |||
2022-09-27 | Make some File/Dir methods private | kobewi | |
2022-09-26 | Fix FileAccessZip() causing a stack overflow | nikitalita | |
2022-09-23 | Merge pull request #66246 from Jummit/fix-dir-crash | Rémi Verschelde | |
Fix crash when listing files in nonexistent directory | |||
2022-09-22 | Fix crash when listing files in nonexistent directory | Jummit | |
2022-09-22 | Merge pull request #66110 from Zylann/reference_get_count | Rémi Verschelde | |
get_reference_count()` | |||
2022-09-21 | Rename and expose `RefCounted::get_reference_count()` | Marc Gilleron | |
2022-09-21 | Merge pull request #66117 from RedMser/json-parse-recursion | Rémi Verschelde | |
Add recursion depth check to `JSON.stringify/parse` | |||
2022-09-20 | Merge pull request #63740 from Faless/net/4.x_http_request_decompress | Rémi Verschelde | |
[HTTP] Implement streaming decompression. | |||
2022-09-20 | [IO] Add StreamPeerGZIP for streaming compression/decompression. | Fabio Alessandrelli | |
Putting data results in writing the compressed/decompressed output into a RingBuffer. You can retrieve the content of the RingBuffer via get_data. Support both gzip and deflate. | |||
2022-09-20 | Merge pull request #60408 from KoBeWi/statically_typed_directories | Rémi Verschelde | |
Introduce more static methods to directory API | |||
2022-09-20 | Introduce more static methods to directory API | kobewi | |
2022-09-20 | [Core] Make ImageFormatLoader extensible. | Fabio Alessandrelli | |
2022-09-19 | Add recursion depth check to JSON stringify/parse | RedMser | |
2022-09-19 | Replace File/Directory with FileAccess/DirAccess | kobewi | |
2022-09-16 | Merge pull request #65295 from reduz/json-as-resource | Rémi Verschelde | |
2022-09-10 | Fixes #65377: get_datetime_* functions can return wrong values | James | |
2022-09-09 | Merge pull request #64938 from YuriSizov/editor-scaled-icons | Rémi Verschelde | |
2022-09-09 | Fix parsing of XML CDATA and add test cases | Haoyu Qiu | |
2022-09-08 | [Net] Rename "ssl" references to "tls" in methods and members. | Fabio Alessandrelli | |
2022-09-07 | Allow images to be imported "for editor use" and respect editor settings | Yuri Sizov | |
2022-09-07 | Merge pull request #65447 from Faless/net/4.x_ssl_to_tls | Rémi Verschelde | |
[Net] Rename StreamPeerSSL to StreamPeerTLS. | |||
2022-09-07 | [Net] Rename StreamPeerSSL to StreamPeerTLS. | Fabio Alessandrelli | |
SSL has been deprectated almost 10 years ago. | |||
2022-09-06 | Prevent HTTPRequest from polling invalid client | Micky | |
2022-09-04 | Replace Rect2(i) has_no_area with has_area | Aaron Franke | |
2022-09-04 | Treat JSON as resource files. | Juan Linietsky | |
This makes the files ended in ".json" be treated as Godot resources. This solves two problems: * Avoid extensions to implement their own handling, which results in conflicts (all must use this one). * Allow code to still work opening it as a file (since it will not be imported). | |||
2022-09-01 | Merge pull request #65212 from Faless/net/4.x_simplify_ext_bindings | Rémi Verschelde | |
2022-09-01 | Merge pull request #65187 from JohanAR/vector_to_size | Rémi Verschelde | |
2022-09-01 | Merge pull request #65206 from aaronfranke/fix-projection-decode | Rémi Verschelde | |
2022-09-01 | Replace Vector2(i) with Size2(i) for methods returning a size | Johan Aires Rastén | |
2022-09-01 | Simplify network GDExtension bindings using EXBIND macros. | Fabio Alessandrelli | |
Simplify StreamPeer, PacketPeer, MultiplayerPeer extension. Simplify and update WebRTC*Extension with newly supported types. | |||
2022-09-01 | Fix a minor bug in the Projection binary decode logic | Aaron Franke | |
2022-09-01 | Add support for scene/resource customization in export plugins | Juan Linietsky | |
EditorExportPlugin adds a set of callbacks to allow customizing scenes, resources or subresources in all files exported: * Can take scene files, resource files and subresources in all of them. * Uses a cache for the converted files if nothing changes, so this work only happens if a file is modified. * Uses hashing to differentiate export configuration caches. * Removed the previous conversion code to binary, as this one uses existing stuff. This API is useful in several scenarios: * Needed by the "server" export platform to get rid of textures, meshes, audio, etc. * Needed by text to binary converters. * Needed by eventual optimizations such as shader precompiling on export, mesh merging and optimization, etc. This is a draft, feedback is very welcome. | |||
2022-08-30 | Additional fixes to the Android `get_current_dir()` implementation. | Fredia Huya-Kouadio | |
2022-08-29 | Rename String `plus_file` to `path_join` | Aaron Franke | |
2022-08-29 | Merge pull request #65031 from akien-mga/os-drop-obsolete-resource-debugging | Rémi Verschelde | |
2022-08-29 | Drop obsolete resource usage debug methods from OS class | Rémi Verschelde | |
These methods exist since the dawn of (open source) Godot and have hardly been updated over time, so they barely work and I'm fairly sure nobody is using them. (See #46505 for details.) While some of the functionality they aimed to provide might be useful for optimization work and introspection, this should likely be redesigned from scratch with a cleaner and more modern interface (e.g. exposed via the Performance singleton, or ResourceLoader, and a better API overall). | |||
2022-08-29 | [Web] Rename JavaScript platform to Web. | Fabio Alessandrelli | |
Also rename export name from "HTML5" to "Web". | |||
2022-08-25 | Merge pull request #64776 from YuriSizov/import-images-moar-flags | Rémi Verschelde | |
2022-08-25 | Merge pull request #64844 from RandomShaper/fa_access_type | Rémi Verschelde | |
Add `FileAccess::get_access_type()` | |||
2022-08-24 | Add FileAccess::get_access_type() | Pedro J. Estébanez | |
2022-08-24 | fix arg naming in ResourceFormatLoader extension | derammo | |
2022-08-23 | Replace Array return types with TypedArray 2 | kobewi | |
2022-08-23 | Make `ImageLoader` take bit field flags | Yuri Sizov | |