6fa632b821
Add function to obtain filesystem type from DirAccess.
...
Change EditorFileSystem to not use directory modification times on FAT32, fixes #20946
2019-01-21 18:06:14 -03:00
100154a131
i18n: Sync translation template with current source
2019-01-21 20:36:37 +01:00
f1f65d9c05
i18n: Sync translations with Weblate
2019-01-21 20:35:16 +01:00
9f464c4418
Merge pull request #25192 from akien-mga/export-ttr
...
ExportDialog: Make error messages translatable
2019-01-21 20:12:12 +01:00
3eb0757552
Modified code generation to be more friendly to previews, fixes #25094
2019-01-21 16:10:23 -03:00
2323464f5e
ExportDialog: Make error messages translatable
...
Also fix missing newlines that caused #24202 .
2019-01-21 18:34:53 +01:00
26cf4fed6e
Merge pull request #25163 from ankitpriyarup/master
...
Disable autowrap for export dialog errors
2019-01-21 18:07:35 +01:00
055456d5fc
Merge pull request #25064 from homer666/itemlist-adjust-ui_select-precedence
...
ItemList: ignore `ui_select` action if Select Mode is not "Multi"
2019-01-21 17:45:30 +01:00
d4ab9d1d6e
Merge pull request #25115 from marxin/fix-19633-proper
...
Fix #19633 by proper store to &ubo_data.shadow_matrix[1234].
2019-01-21 17:40:56 +01:00
ad633b6c9c
Merge pull request #25117 from dragmz/patch-6
...
Replace CreateThread with QueueUserWorkItem
2019-01-21 16:18:58 +01:00
52f9cb37ca
Merge pull request #25188 from akien-mga/sync-controller-db
...
Sync controller mappings DB with SDL2 community repo
2019-01-21 16:06:32 +01:00
3c288f1052
Sync controller mappings DB with SDL2 community repo
...
Synced with gabomdq/SDL_GameControllerDB@c5af5d58f4 .
Closes #25138 .
2019-01-21 15:48:31 +01:00
7e6edee193
Disable autowrap for export dialog errors
...
Fixes #25065
2019-01-21 18:01:40 +05:30
769341e180
Cleanup after @reduz :)
...
Fixes #25172 .
2019-01-21 11:12:55 +01:00
bef383985e
Merge pull request #25168 from eska014/html5-autoplay
...
Deal with Google's HTML5 autoplay policy
2019-01-21 10:57:49 +01:00
38a5a23a12
Merge pull request #25175 from Calinou/make-export-debug-more-visible
...
Make "Export with Debug" more visible in the Export dialog
2019-01-21 10:56:00 +01:00
a0730652fc
Merge pull request #25180 from AndreaCatania/arov
...
Fixed area overlaps if not move
2019-01-21 10:39:41 +01:00
cef99771f3
Merge pull request #25182 from akien-mga/travis-fix-android
...
Travis: Fix accepting Android SDK licenses
2019-01-21 10:06:33 +01:00
8a5a24c6dd
Travis: Fix accepting Android SDK licenses
...
It has been failing since a few days, apparently `sdkmanager --licenses`
is no longer sufficient to accept all licenses, the `platform-tools` install
triggers another license dialog. Now saying yes to all just in case.
2019-01-21 09:40:30 +01:00
a9214bcee7
Fixed area overlaps if not move
2019-01-21 08:30:49 +01:00
0babbca67e
Merge pull request #25177 from neikeq/nn
...
Workaround for bug with Mono's MSBuild and BaseIntermediateOutputPath
2019-01-21 01:32:07 +01:00
0ac5be8368
Fix C# script metadata creation error due to missing directory
2019-01-21 00:57:03 +01:00
ca8100f29f
Workaround for bug with Mono's MSBuild and BaseIntermediateOutputPath
...
BaseIntermediateOutputPath seems to be empty by default. The workaround is to explicitly set it.
Also fixed passing char instead of char[] to String.Split. Why was this even working with Mono?
2019-01-21 00:38:28 +01:00
f9d0bc1858
Make "Export with Debug" more visible in the Export dialog
...
This swaps out the CheckButton with a CheckBox, which has two benefits:
- The checkbox icon appears to the left of the text, which moves it
closer from the text. This makes it more easily noticeable, as
it also appears below the "File:" text now.
- It follows the UI convention of using checkboxes for options that
do not bear an immediate effect, unlike CheckButtons which are
expected to have an immediate effect when toggled.
This closes #25170 .
2019-01-20 23:53:42 +01:00
8f1669e771
Deal with Google's HTML5 autoplay policy
...
Resume audio context after mouse, touch or key input.
2019-01-20 14:25:15 +01:00
09e4d7e9eb
Merge pull request #25136 from Demiu/doc-tilemap
...
Docs: Fix TileMap::world_to_map description
2019-01-20 11:58:54 +01:00
08417c8597
Merge pull request #25135 from CakHuri/fix-capabilites
...
Fixed a typo in 'uwp_device_capabilites'
2019-01-20 11:58:26 +01:00
f0035b7cc7
Merge pull request #25150 from eska014/html5-warning
...
Fix HTML5 build warning
2019-01-20 09:25:21 +01:00
35728e41ba
Merge pull request #25149 from eska014/html5-gamepad-sampling
...
Fix HTML5 gamepad sampling
2019-01-20 09:17:24 +01:00
db6be7b59f
Refactor OS_JavaScript header
2019-01-20 00:13:20 +01:00
35466475fe
Fix HTML5 build warning
2019-01-20 00:12:50 +01:00
0d47dccda9
Fix HTML5 gamepad logic for Emscripten 1.38.22 compat breakage
2019-01-20 00:07:31 +01:00
a0640f799b
Docs: Fix TileMap::world_to_map description
2019-01-19 15:23:49 +01:00
544015e380
Fixed a typo in 'uwp_device_capabilites'
2019-01-19 20:51:30 +07:00
d9eb6a5b20
Fix #19633 by proper store to &ubo_data.shadow_matrix[1234].
...
It is not valid in C++ to store into shadow_matrix1[16] with shadow_matrix1[16 * j]
(for j > 0). Even though there's a valid space in a struct after shadow_matrix1.
Knowing that GCC performs aggressive optimizations that eventually lead
to a wrong code. Code has been changed into union where one can either
use shadow_matrix[4 * 16], or individual shadow_matrix1, shadow_matrix2, etc. GCC pragma
is not needed any longer.
2019-01-19 10:25:01 +01:00
7f9209781c
Merge pull request #25059 from TheCoderNextdoor/TheCoderNextdoor-patch-1
...
doc: Add missing descriptions to Particles2D
2019-01-19 10:18:58 +01:00
d10f8027a4
Merge pull request #25114 from Calinou/fix-colorpicker-rounding
...
Fix a rounding error in ColorPicker
2019-01-19 10:00:42 +01:00
632ff1634b
Merge pull request #25110 from groud/display_pivot
...
Displays the pivot all the time and rotate the icon
2019-01-19 09:39:33 +01:00
953432f4b6
Merge pull request #25111 from MelvinWM/master
...
Editor source status font size, fixes #25039
2019-01-19 09:37:39 +01:00
50c8019dcd
Fix excluding GCC pragmas from Clang
...
Why the heck does Clang define __GNUC__...
2019-01-19 08:17:32 +01:00
a9fcd574f4
Only define GCC pragmas for GCC
2019-01-19 08:00:17 +01:00
ead285bc7c
Added missing descriptions to Particles2D
...
Missing descriptions of property: normal_map, fract_delta, fixed_fps and method: restart(), capture_rect() of Particles2D were added
2019-01-19 06:17:39 +05:30
fdd7ed36bf
Merge pull request #25116 from grantclarke-abertay/master
...
Fixed Bone Transform Order
2019-01-18 20:36:49 -03:00
e65bce3083
Replace CreateThread with QueueUserWorkItem
...
Fixes #24869 stuttering on Windows by reusing long running threadpool threads instead of creating a new thread on each call to Thread::start.
2019-01-19 00:31:10 +01:00
73a7a1a388
Merge pull request #25113 from aaronfranke/doc-kinematic
...
Improve docs for KinematicBody linear_velocity, fixes #23927
2019-01-18 14:56:37 -08:00
763353692b
Improve docs for KinematicBody linear_velocity, fixes #23927
2019-01-18 17:48:16 -05:00
d27ca7eb73
Fixed Bone Transform Order
...
The bone index being passed to the visual server is not using the process order and results in incorrect skin deformation if the calculated process order is different from the unordered bones Vector.
Incidentally, this never showed when I exported rigged characters from blender using the Better Collada exporter. This bug only materialised when experimenting with the glTF pipeline from Maya.
2019-01-18 22:26:13 +00:00
4b78306459
Fix a rounding error in ColorPicker
...
This closes #25063 .
2019-01-18 22:19:19 +01:00
93d8f3cdd5
respect mouse mode when setting enter/exit notifications and signals, fixes #19785
2019-01-18 17:53:36 -03:00
682fdf0f74
Use 16 bit indices on phones that dont support 32, fixes #19797
2019-01-18 17:30:12 -03:00