summaryrefslogtreecommitdiffstats
path: root/platform
Commit message (Collapse)AuthorAgeFilesLines
* Unify bits, arch, and android_arch into env["arch"]Aaron Franke2022-08-2513-135/+174
| | | | | | Fully removes the `bits` option and adapts the code that relied on it. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* Merge pull request #64630 from nathanfranke/ios-opaqueRémi Verschelde2022-08-251-28/+35
|\ | | | | (4.x) iOS: Force app store icon to be opaque, use proper errors
| * ios: force app store icon to be opaque, use proper errorsNathan Franke2022-08-191-28/+35
| |
* | Merge pull request #64414 from m4gr3d/fix_get_current_dir_mainRémi Verschelde2022-08-232-0/+15
|\ \
| * | Fix issue with `get_current_dir()` returning the wrong path on AndroidFredia Huya-Kouadio2022-08-192-0/+15
| |/
* | Replace Array return types with TypedArraykobewi2022-08-2214-21/+21
| |
* | Merge pull request #64374 from RandomShaper/inheritable_cl_argsRémi Verschelde2022-08-221-1/+0
|\ \
| * | Overhaul CLI argument forwarding to processes started by the editorPedro J. Estébanez2022-08-191-1/+0
| | |
* | | Merge pull request #64481 from jamie-pate/masterFabio Alessandrelli2022-08-201-21/+7
|\ \ \ | |_|/ |/| | Improve performance of screen_get_dpi() in Javascript
| * | Improve performance of screen_get_dpi() in JavascriptJamie Pate2022-08-151-21/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace a bisect with a single multiplication when calling screen_get_dpi() in Javascript Tested the value of window.matchMedia(`(resolution:${(window.devicePixelRatio*96).toFixed(100)}dpi)`).matches which is true except for values that cause a lot of rounding errors (e.g. dpr : 0.3 => resolution: 28.799999999999997dpi) Even in these cases the value matches the result of the previous `findDPI()` method. See also: https://github.com/godotengine/godot/commit/6cff589b5bd483b563fe465bde74ca94902aab41#r81273660
* | | Implement `MenuBar` control to wrap `PopupMenu`s or native menu, use native ↵bruvzg2022-08-183-120/+314
|/ / | | | | | | menu for editor.
* | Disable threads used to check on plugins to loadFredia Huya-Kouadio2022-08-154-4/+16
| | | | | | | | The functionality is unavailable on Android (requires export capability) and unnecessarily consumes resources
* | Fix issue preventing the Android Editor from displaying the project contentFredia Huya-Kouadio2022-08-154-6/+22
| | | | | | | | | | The issue was causing by a bug within the logic for `FileAccessFilesystemJAndroid#eof_reached()` causing that value to remain false after the eof was reached. This in turn caused an infinite loop in the file scanner preventing the project's content from showing up.
* | Refactor the export checking logic to improve separation of concernsFredia Huya-Kouadio2022-08-1412-17/+108
|/
* Clean iOS platform config of long gone macroPedro J. Estébanez2022-08-101-2/+0
|
* Merge pull request #49829 from naithar/feature/ios-plugins-swift-4.0Rémi Verschelde2022-08-104-1/+40
|\
| * [iOS] Extend iOS plugins to support Swift runtimeSergey Minakov2022-08-094-1/+40
| |
* | Fix memory leak when accessing/listing system fonts.bruvzg2022-08-091-0/+3
|/
* Merge pull request #62885 from madmiraal/fix-59931Rémi Verschelde2022-08-089-177/+224
|\
| * Fix incorrect Android scancodesMarcel Admiraal2022-07-139-177/+224
| |
* | Merge pull request #64014 from RedMser/keep-screen-on-singledefRémi Verschelde2022-08-085-5/+5
|\ \
| * | Only define `keep_screen_on` project setting onceRedMser2022-08-065-5/+5
| | |
* | | Merge branch 'master' into bugfix-ios-exportLarry Tran2022-08-054-1/+47
|\| |
| * | Merge pull request #63882 from RedMser/keep-screen-on-windowsRémi Verschelde2022-08-052-1/+42
| |\ \ | | | | | | | | Implement `keep_screen_on` for Windows
| | * | Implement `keep_screen_on` for WindowsRedMser2022-08-052-1/+42
| | | |
| * | | Implement `screen_is_kept_on` for macOS.bruvzg2022-08-052-0/+5
| |/ /
* / / Remove unnecessary string replacementLarry Tran2022-08-051-2/+0
|/ /
* | Add support for multiple virtual keyboard typesBrian Semrau2022-08-0417-33/+140
| |
* | Implement `screen_set_keep_on` for macOSbruvzg2022-08-042-0/+26
| |
* | Merge pull request #49058 from madmiraal/add-override-fileaccessRémi Verschelde2022-08-022-22/+22
|\ \ | | | | | | Add override keywords to FileAccess and DirAccess derived classes
| * | Add override keywords to DirAccess derived classesMarcel Admiraal2022-08-021-4/+4
| | |
| * | Add override keywords to FileAccess derived classesMarcel Admiraal2022-08-021-18/+18
| | |
* | | Merge pull request #61315 from lawnjelly/variant_bucket_poolsRémi Verschelde2022-08-021-0/+5
|\ \ \ | |/ / |/| | Variant memory pools
| * | Variant memory poolslawnjelly2022-07-041-0/+5
| | | | | | | | | | | | Memory pools via PagedAllocator for Transform2D, Transform3D, Basis and AABB.
* | | File: Re-add support to skip CR (`\r`) in `File::get_as_text`Rémi Verschelde2022-08-011-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was removed in #63481, and we confirmed that it's better like this, but we add back the possibility to strip CR as an option, to optionally restore the previous behavior. For performance this is done directly in `String::parse_utf8`. Also fixes Android `FileAccess::get_line()` as this one _should_ strip CR. Supersedes #63717.
* | | Extract EditorResourceConversionPlugin into its own source files and clean ↵Yuri Sizov2022-07-316-0/+6
| | | | | | | | | | | | up editor includes
* | | Visual Studio Natvis file works for Variant againderammo2022-07-311-2/+2
| | |
* | | Merge pull request #63563 from aaronfranke/export-archRémi Verschelde2022-07-3014-96/+63
|\ \ \
| * | | Update export dialog to handle many architecturesAaron Franke2022-07-298-75/+42
| | | |
| * | | Make some editor export methods constAaron Franke2022-07-2910-21/+21
| | | |
* | | | Merge pull request #63647 from bruvzg/exp_msg_impRémi Verschelde2022-07-301-4/+4
|\ \ \ \ | | | | | | | | | | Improve some export error messages.
| * | | | Improve some export error messages.bruvzg2022-07-291-4/+4
| | | | |
* | | | | Merge pull request #61647 from KoBeWi/SaverResourceRémi Verschelde2022-07-291-1/+1
|\ \ \ \ \
| * | | | | Swap arguments of ResourceSaver.save()kobewi2022-07-291-1/+1
| |/ / / /
* / / / / [Linux] Fix build with missing DBUS.bruvzg2022-07-291-0/+1
|/ / / /
* | | | Merge pull request #63595 from reduz/remove-signal-connect-bindsRémi Verschelde2022-07-299-32/+32
|\ \ \ \ | |/ / / |/| | | Remove Signal connect binds
| * | | Remove Signal connect bindsJuan Linietsky2022-07-299-32/+32
| | | | | | | | | | | | | | | | | | | | Remove the optional argument p_binds from `Object::connect` since it was deprecated by Callable.bind(). Changed all uses of it to Callable.bind()
* | | | [Linux] Load dbus libraries dynamically.bruvzg2022-07-296-4/+3626
| | | |
* | | | [Linux] Replace fontconfig wrapper with a one generated from the older ↵bruvzg2022-07-292-259/+4
|/ / / | | | | | | | | | library version (2.12.6, Ubuntu 18.04 LTS).
* | | Merge pull request #63548 from pattlebass/master-html5-vibrateRémi Verschelde2022-07-274-0/+16
|\ \ \