Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-07-06 | Remove Android onKeyMultiple override | Marcel Admiraal | |
2021-07-06 | Merge pull request #50107 from madmiraal/android-use-lambdas | Rémi Verschelde | |
Replace single method anonymous classes with lambdas in Godot Java code | |||
2021-07-03 | Use static inner classes in Godot Java code | Marcel Admiraal | |
2021-07-03 | Replace single method anonymous classes with lambdas in Godot Java code | Marcel Admiraal | |
2021-07-02 | Merge pull request #50085 from madmiraal/android-replace-stringbuffer | Rémi Verschelde | |
Use StringBuilder instead StringBuffer in Godot Java code | |||
2021-07-02 | Merge pull request #50083 from madmiraal/android-fix-raw-use | Rémi Verschelde | |
Fix raw use of parameterized Class | |||
2021-07-02 | Remove redundant explicit types in Godot Java code | Marcel Admiraal | |
2021-07-02 | Use StringBuilder instead StringBuffer in Godot Java code | Marcel Admiraal | |
2021-07-02 | Merge pull request #50078 from madmiraal/android-remove-unused-imports | Rémi Verschelde | |
2021-07-02 | Fix raw use of parameterized Class | Marcel Admiraal | |
2021-07-02 | Android: Initialize mouse mode | thebestnom | |
2021-07-02 | Remove unused imports from Android Java code | Marcel Admiraal | |
2021-07-02 | Merge pull request #50074 from madmiraal/android-replace-c-array | Rémi Verschelde | |
Use Java array declarations not C-style declarations in Android Java code | |||
2021-07-02 | Merge pull request #50072 from madmiraal/android-remove-interface-modifiers | Rémi Verschelde | |
Remove redundant interface modifiers from Android Java code | |||
2021-07-02 | Use Java array declarations not C-style declarations in Android Java code | Marcel Admiraal | |
2021-07-02 | Remove redundant interface modifiers from Android Java code | Marcel Admiraal | |
2021-07-02 | Remove unnecessary semicolons from Android Java code | Marcel Admiraal | |
2021-07-01 | Android: Add `isGame` application attribute, default to true | Rémi Verschelde | |
It can be turned off in the export preset with `package/classify_as_game`. Upstream definition: https://developer.android.com/guide/topics/manifest/application-element#isGame > `android:isGame` > > Whether or not the application is a game. The system may group together > applications classifed as games or display them separately from other > applications. Also fixes replacing `android:allowBackup` in custom builds. | |||
2021-06-30 | Fix unchecked call to put() warning in GodotInputHandler.java | Marcel Admiraal | |
2021-06-29 | Add GDNative libraries to Android custom Gradle builds | Marcel Admiraal | |
2021-06-24 | Update config versions and deprecate the use of the jcenter maven repo. | ne0fhyk | |
2021-06-22 | Add support for custom debug keystore. | ne0fhyk | |
2021-06-20 | Use mouse and joypad enums instead of plain integers | Aaron Franke | |
Also MIDIMessage | |||
2021-06-20 | Move many input enums to their own file | Aaron Franke | |
2021-06-19 | Rename `instance()`->`instantiate()` when it's a verb | Lightning_A | |
2021-06-19 | Add adb output to error message when install fails | Marcel Admiraal | |
2021-06-12 | Merge pull request #49123 from aaronfranke/it-is-time | Rémi Verschelde | |
Add a Time singleton | |||
2021-06-11 | Rename Reference to RefCounted | Pedro J. Estébanez | |
2021-06-11 | Merge pull request #49511 from akien-mga/core-diraccess-fileaccess-io | Rémi Verschelde | |
Core: Move DirAccess and FileAccess to `core/io` | |||
2021-06-11 | Merge pull request #49279 from Calinou/rename-string-is-abs-path-method | Rémi Verschelde | |
Rename `String.is_abs_path()` to `String.is_absolute_path()` | |||
2021-06-11 | Add Time singleton | Aaron Franke | |
2021-06-11 | Core: Move DirAccess and FileAccess to `core/io` | Rémi Verschelde | |
File handling APIs are typically considered part of I/O, and we did have most `FileAccess` implementations in `core/io` already. | |||
2021-06-10 | Merge pull request #49435 from madmiraal/add-android-external-dir | Rémi Verschelde | |
Add OS.get_external_data_dir() to get Android external directory | |||
2021-06-10 | Add OS.get_external_data_dir() to get Android external directory | Marcel Admiraal | |
2021-06-10 | Remove unused AudioDriverAndroid from Android | Marcel Admiraal | |
2021-06-07 | Merge pull request #49382 from akien-mga/misc-cleanup | Rémi Verschelde | |
Style: Cleanup uses of double spaces between words | |||
2021-06-07 | Style: Cleanup uses of double spaces between words | Rémi Verschelde | |
Or after punctuation. Tried to leave third-party stuff alone, unless it has been heavily modified for Godot. | |||
2021-06-07 | Update Gradle archiveName and destinationDir properties | Marcel Admiraal | |
2021-06-03 | Rename `String.is_abs_path()` to `String.is_absolute_path()` | Hugo Locurcio | |
This is more consistent with `NodePath.is_absolute()`. | |||
2021-06-01 | Merge pull request #48963 from ↵ | Rémi Verschelde | |
HaywardMorihara/export-android-keystore-debug-warnings Exporting -> Android: Keystore Warnings | |||
2021-05-31 | Implement shader caching | reduz | |
* Shader compilation is now cached. Subsequent loads take less than a millisecond. * Improved game, editor and project manager startup time. * Editor uses .godot/shader_cache to store shaders. * Game uses user://shader_cache * Project manager uses $config_dir/shader_cache * Options to tweak shader caching in project settings. * Editor path configuration moved from EditorSettings to new class, EditorPaths, so it can be available early on (before shaders are compiled). * Reworked ShaderCompilerRD to ensure deterministic shader code creation (else shader may change and cache will be invalidated). * Added shader compression with SMOLV: https://github.com/aras-p/smol-v | |||
2021-05-25 | Merge pull request #49069 from RandomShaper/android_data_backup | Rémi Verschelde | |
Allow basic user data backup on Android | |||
2021-05-25 | Merge pull request #48422 from szymonm-google/android_orientation_fix | Rémi Verschelde | |
Fixed changing screen orientation on Android | |||
2021-05-25 | Allow basic user data backup on Android | Pedro J. Estébanez | |
2021-05-25 | Rename File::get_len() get_length() | Marcel Admiraal | |
2021-05-24 | Fixed screen orientation on Android | Szymon Majewski | |
2021-05-24 | Exporting: Android Debug Keystore Warnings | Nathaniel Morihara | |
2021-05-24 | Merge pull request #48939 from Calinou/screen-orientation-use-enum | Rémi Verschelde | |
Use an enum to represent screen orientation in the Project Settings | |||
2021-05-24 | Use an enum to represent screen orientation in the Project Settings | Hugo Locurcio | |
- Tweak the setting property hint to be more informative. - Make the setting a "basic" setting so it appears when Advanced Settings is disabled. - Remove redundant orientation setting in the iOS export preset. The project setting is now used (like on Android). Projects upgrading from a previous version will have to set the screen orientation again in the Project Settings if it wasn't set to the default value ("landscape"). | |||
2021-05-22 | Add symlink API to the DirAccess (on macOS and Linux). | bruvzg | |