Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-07-21 | Rename OSX to macOS and iPhoneOS to iOS. | bruvzg | |
2022-07-19 | Improve DisplayServer.window_set_current_screen | bruvzg | |
Prevent unnecessary fullscreen toggle animation on macOS, when screen is not changed Fix window position on Linux/X11 | |||
2022-07-08 | Add static methods for creating Image and ImageTexture | kobewi | |
2022-07-07 | [macOS] Improve file association handling, and allow URL schema handling. | bruvzg | |
2022-07-06 | Check if GL manager exist to prevent crash when using multithreaded renderer ↵ | bruvzg | |
with Vulkan. | |||
2022-07-04 | Merge pull request #62212 from hansemro/eraser-detect-4 | Rémi Verschelde | |
Add inversion/eraser-end property for tablet pens | |||
2022-07-04 | [macOS, Windows, X11] Add stylus inverted/eraser support to | Hansem Ro | |
InputEventMouseMotion event | |||
2022-07-03 | [macOS] Use statically linked MoltenVK by default, automatically detect ↵ | bruvzg | |
MoltenVK SDK install (only in the default location). | |||
2022-07-02 | Fix exit code of --help and --version, and test them in CI | Jan Haller | |
Corrects prior regression which caused ERROR output and exit code of 1. | |||
2022-07-02 | [macOS export] Unref FileAccess to ensure chmod is successful. | bruvzg | |
2022-07-01 | Add arch flag to assembler to fix build on ARM64 macOS / iOS. | bruvzg | |
2022-06-16 | Adding function key support from F17 to F35 | gregcsokas | |
OSX supports everything by default, Linux is also capable of supporting every function key, Windows as I know support only up to F24 | |||
2022-06-08 | Add readable export errors. | bruvzg | |
2022-06-02 | Remove mouse events that closed the popup from queue, to fix pop-up reopening. | bruvzg | |
2022-05-20 | Add a new HashSet template | reduz | |
* Intended to replace RBSet in most cases. * Optimized for iteration speed | |||
2022-05-16 | Replace most uses of Map by HashMap | reduz | |
* Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated! | |||
2022-05-11 | Fix ZipIO crash when reused (and possible leaks). | bruvzg | |
2022-05-10 | [macOS / iOS] Fix text-to-speech build with older macOS / iOS SDK. | bruvzg | |
Add __has_include check for AVFAudio include. Add some explicit casts to avoid conflicts. Change all `include`s to `import`s for consistency. | |||
2022-05-05 | Crash handler: Use `print_error` to include backtrace in logs | Rémi Verschelde | |
2022-05-03 | Merge pull request #60714 from Calinou/typedef-remove-ref | Rémi Verschelde | |
Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>` | |||
2022-05-03 | Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>` | Hugo Locurcio | |
These typedefs don't save much typing compared to the full `Ref<Resource>` and `Ref<RefCounted>`, yet they sometimes introduce confusion among new contributors. | |||
2022-04-29 | Add GDNativeInterface::get_library_path to GDExtension | Emmanuel Leblond | |
2022-04-28 | Implement text-to-speech support on Android, iOS, HTML5, Linux, macOS and ↵ | bruvzg | |
Windows. Implement TextServer word break method. | |||
2022-04-13 | Fix sub-menu keyboard navigation. | bruvzg | |
2022-04-12 | Narrow FileAccess scope to prevent deadlocks. | bruvzg | |
2022-04-11 | Make FileAccess and DirAccess classes reference counted. | bruvzg | |
2022-04-06 | Fix some issues found by cppcheck. | bruvzg | |
2022-04-05 | Fix a possible race condition on popup close, that might cause multiple ↵ | bruvzg | |
deletions of the same list item. | |||
2022-04-04 | Zero initialize all pointer class and struct members | Rémi Verschelde | |
This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr. | |||
2022-04-04 | [macOS] Add bundle launch code for older (pre 10.15) macOS versions. | bruvzg | |
2022-04-01 | Add CI build with clang sanitizers, increase stack size to 30 MB for builds ↵ | bruvzg | |
with sanitizers. | |||
2022-03-27 | Rename warp mouse functions to warp_mouse | Markus Sauermann | |
2022-03-24 | Fix PopupMenu behavior on MacOS when multiple monitors are used | C.Even | |
* DisplayServerOSX::mouse_get_position returns wrong x axis data in multi-monitor case, which makes mouse_process_popups send WINDOW_EVENT_CLOSE_REQUEST, then eventually make PopupMenu close on mouse down without activating item. | |||
2022-03-22 | [macOS] Add missing global menu features. | bruvzg | |
2022-03-18 | Merge pull request #58455 from bruvzg/export_script | Rémi Verschelde | |
2022-03-16 | Implement GDExtension export plugin. | bruvzg | |
2022-03-14 | [Export] Add "export console script" option for Linux, macOS, and Windows ↵ | bruvzg | |
exports. | |||
2022-03-11 | Merge pull request #58986 from akien-mga/diraccessref | Rémi Verschelde | |
2022-03-11 | Merge pull request #58751 from bruvzg/loc_str_props | Rémi Verschelde | |
2022-03-11 | Convert uses of `DirAccess *` to `DirAccessRef` to prevent memleaks | Rémi Verschelde | |
`DirAccess *` needs to be deleted manually, and this is often forgotten especially when doing early returns with `ERR_FAIL_COND`. `DirAccessRef` is deleted automatically when it goes out of scope. Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com> | |||
2022-03-08 | [X11] Do not try to focus unmapped window. | bruvzg | |
2022-03-04 | Improve app name and system permission message localization. | bruvzg | |
Add localizable string (Dictionary<Lang Code, String>) property editor and property hint. Add localized "app name" property to the project settings. Add localized permission and copyright properties to the macOS and iOS export settings. Remove some duplicated ("app name") and deprecated ("info") macOS and iOS export properties. | |||
2022-03-04 | Merge pull request #58738 from bruvzg/mac_resize_crash | Rémi Verschelde | |
[macOS] Disable window redraw during resize, when rendering in the separate thread. | |||
2022-03-04 | [macOS] Disable window redraw during resize, when rendering in the separate ↵ | bruvzg | |
thread. | |||
2022-03-04 | [macOS and iOS export] Add localized application name to the translation ↵ | bruvzg | |
.plist files. | |||
2022-02-25 | Improve popup window handling. | bruvzg | |
Add window FLAG_POPUP and a platform specific routines to control popup auto-hiding and event forwarding. | |||
2022-02-16 | Style: Cleanup single-line blocks, semicolons, dead code | Rémi Verschelde | |
Remove currently unused implementation of TextureBasisU, could be re-added later on if needed and ported. | |||
2022-02-16 | i18n: Sync editor translations with Weblate | Rémi Verschelde | |
Minor proofreading of new OSX export strings. (cherry picked from commit 9f09251027a485f14740dce7b753e962d26bff78) | |||
2022-02-15 | Add an `OS.get_processor_name()` method | Hugo Locurcio | |
This method can be used to get the CPU model name. It can be used in conjunction with `RenderingServer.get_video_adapter_name()` and `RenderingServer.get_video_adapter_vendor()` for annotating benchmarks and automatic graphics quality configuration. | |||
2022-02-15 | Editor: Cleanup some includes dependencies | Rémi Verschelde | |
Removes some unnecessary includes from `editor_node.h`, and instead add those where they're used. Removes unnecessary `editor_node.h` includes in various editor classes. Renames `dynamicfont` to `dynamic_font` in a couple files. Misc cleanup while jumping through that rabbit hole. |