Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-03-20 | Merge pull request #17645 from volzhs/android-device-info | Rémi Verschelde | |
Fix getting Android device information | |||
2018-03-20 | Merge pull request #17637 from robfram/fix-draw_polyline_colors-crash | Rémi Verschelde | |
Fix crash in `canvas_item_add_polyline` when passing more points than colors | |||
2018-03-20 | Merge pull request #17589 from robfram/fix-always-save-at-run | Rémi Verschelde | |
Fix saving unmodified scenes and resources | |||
2018-03-20 | Merge pull request #17632 from endragor/fix-resize-font-update | Rémi Verschelde | |
Fix oversampled font artifacts after resize | |||
2018-03-20 | Merge pull request #17599 from marcelofg55/channels_crashfix | Rémi Verschelde | |
Fix possible crash when audio channels change | |||
2018-03-20 | Merge pull request #17629 from bruvzg/macos_nstask | Rémi Verschelde | |
[macOS] Implement OS_OSX::execute (using NSTask) | |||
2018-03-20 | Fix getting Android device information | volzhs | |
Fix #17644 | |||
2018-03-19 | Fix crash in `canvas_item_add_polyline` when passing more points than colors | robfram | |
When `p_points.size() > p_colors.size()`, it crashed with invalid array access to `p_colors`. Also, when `p_colors` was an empty `Vector` it crashed due a missing `else` checking the `size` condition, as the code handling that special case exists. This PR fixes the missing `else` for `p_colors.size == 0` and, following the `canvas_item_add_multiline` spirit, it only uses the first color for the whole polyline if points and colors differ in size. Fix #17621. | |||
2018-03-19 | Merge pull request #17634 from PJB3005/18-03-19-mono-build-blunder | Rémi Verschelde | |
Fix mono build properly! | |||
2018-03-19 | Fix mono build properly! | PJB3005 | |
Fixes the mistake I made in #17603 to make it require Python > 3.6. | |||
2018-03-19 | Fix oversampled font artifacts after resize | Ruslan Mustakov | |
Font update after resize relies on the viewport size which was updated after the font was already refreshed, which resulted in artifacts when it was rendered into the actual/new viewport size. Fixes #15173. | |||
2018-03-19 | Fix possible crash when audio channels change | Marcelo Fernandez | |
2018-03-19 | Implement OS_OSX::execute | bruvzg | |
2018-03-19 | Merge pull request #17622 from RandomShaper/gltf-fixes | Rémi Verschelde | |
A couple of fixes for glTF importing | |||
2018-03-19 | Merge pull request #17548 from groud/fix_scrollbars | Rémi Verschelde | |
Fixes scrollbars in Canvas Item Editor | |||
2018-03-19 | Merge pull request #17618 from groud/fix_gridcontainer | Rémi Verschelde | |
Fixes wrong calculation of gridcontainer's children size | |||
2018-03-19 | Merge pull request #17603 from PJB3005/18-03-18-fix-mono-build-python3 | Rémi Verschelde | |
Fix Mono builds with Python 3. | |||
2018-03-19 | Merge pull request #17617 from eska014/emsc-assertions | Rémi Verschelde | |
Disable Emscripten assertions in release_debug builds | |||
2018-03-19 | Merge pull request #17606 from PJB3005/18-03-18-just-pressed-action-docs-update | Poommetee Ketson | |
Improve Input.is_action_just_* docs. [ci skip] | |||
2018-03-19 | Fix animation length from glTF not correctly set | Pedro J. Estébanez | |
2018-03-19 | Fix glTF not accepting VEC3 colors | Pedro J. Estébanez | |
Aside from the colors themselves, the rejection was adding somes issues later in the mesh import process. | |||
2018-03-18 | Merge pull request #17619 from neikeq/mono-runtime-main-args | Ignacio Etcheverry | |
Mono: Runtime main args and assembly search fixes | |||
2018-03-18 | Mono: Runtime main args and assembly search fixes | Ignacio Etcheverry | |
- Setup runtime main args during initialization. This must be done manually by embedders who do not call mono_runtime_run_main. Fixes NullReferenceException in System.Environment. - Continue to search the assembly in the rest of the search locations if loading it from one of them failed. | |||
2018-03-18 | Fixes wrong calculation of gridcontainer's children size | Gilles Roudiere | |
2018-03-18 | Disable Emscripten assertions in release_debug builds | Leon Krause | |
The messages generated by some assertions can be confusing to users. | |||
2018-03-18 | Improve Input.is_action_just_* docs. | Pieter-Jan Briers | |
More clarification. | |||
2018-03-18 | Fix saving unmodified scenes and resources | robfram | |
When `_save_all_scenes` or `save_resource_in_path` was called, they always saved all the scenes and the resource no matter if they were modified or not. For example, when `saving before run` option was checked, it always overwrote the current scene and the default environment simply by opening and runing the project. This PR adds checks for unsaved scenes (using the same `unsave` check others method used) and modified resources (comparing last modified time and last import time). Fix #6025. | |||
2018-03-18 | Fix Mono builds with Python 3. | Pieter-Jan Briers | |
A subprocess call wasn't specifying an encoding, so this gave a TypeError in Python 3. | |||
2018-03-18 | Merge pull request #17590 from YeldhamDev/iph_typo_fix | Poommetee Ketson | |
Fixed small typo in the "InstancePlaceholder" doc [ci skip] | |||
2018-03-17 | Fixed small typo in the "InstancePlaceholder" doc. | Michael Alexsander Silva Dias | |
2018-03-17 | Fixes scrollbars in Canvas Item Editor | Gilles Roudiere | |
2018-03-17 | Merge pull request #17564 from ShyRed/fixbuild | Rémi Verschelde | |
Open textfile in textmode | |||
2018-03-16 | Merge pull request #17179 from paulloz/mono-assemblies-preload-facades | Ignacio Etcheverry | |
[mono] add the 'Facades' subfolder to the searched directories | |||
2018-03-16 | Merge pull request #16947 from Faless/ui_actions | Fabio Alessandrelli | |
GUI elements ui_action usage, improvements | |||
2018-03-16 | Open textfile in textmode | ShyRed | |
Open mapping files in textmode as they are textfiles. | |||
2018-03-16 | Fix typo in engine.js | Leon Krause | |
2018-03-16 | [DOCS] Node: Remove duplicate information | Max Hilbrunner | |
2018-03-16 | SCons: properly close files when reading controller mappings | Rémi Verschelde | |
Fixup to #17296. | |||
2018-03-16 | Merge pull request #17537 from Noshyaar/intcam | Rémi Verschelde | |
InterpolatedCamera: use internal_process | |||
2018-03-16 | Merge pull request #16964 from mrcdk/audio_server_bus_changed_fix | Hein-Pieter van Braam | |
AudioServer emit bus_layout_changed signal when adding, moving or del… | |||
2018-03-16 | Merge pull request #17130 from nical/issue-17050 | Hein-Pieter van Braam | |
Fix polyline rendering when width <= 1. | |||
2018-03-15 | Merge pull request #17248 from Cygon/implement-extra-culling-margin | Hein-Pieter van Braam | |
Apply culling margin (fixes issue #16115) | |||
2018-03-16 | InterpolatedCamera: use internal_process | Poommetee Ketson | |
2018-03-15 | Merge pull request #17264 from poke1024/fix-gesture-key-event-accepted | Hein-Pieter van Braam | |
Fix gesture events being blocked | |||
2018-03-15 | Merge pull request #17291 from Warlaan/master | Hein-Pieter van Braam | |
completed-signal for coroutines with more than one yield | |||
2018-03-15 | Merge pull request #17293 from bncastle/basebutton_fix_pressed | Hein-Pieter van Braam | |
Fix "ui_accept" action not calling _pressed() function in GDScript Button | |||
2018-03-15 | Merge pull request #17237 from RandomShaper/fix-ssl-handshake | Fabio Alessandrelli | |
Fix HTTPClient SNI support when verify is off | |||
2018-03-15 | Merge pull request #17296 from cart/controller-mapping-autogen | Hein-Pieter van Braam | |
Generate controller mapping class from one or more SDL2 database files | |||
2018-03-15 | Merge pull request #17376 from marcelofg55/file_get_path | Hein-Pieter van Braam | |
Added File.get_path and File.get_path_absolute functions | |||
2018-03-15 | Merge pull request #17407 from poke1024/fix-hsv-mismatch | Hein-Pieter van Braam | |
Fix mismatch between Color.h and Color.from_hsv() |