| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Resume audio on iOS after phone call or alarm | Ruslan Mustakov | 2018-05-07 | 2 | -1/+13 |
| | | | | | | | | When a phone call or an alarm triggers on iOS, the application receives an "audio interruption" and it's up to the application to resume playback when the interruption ends. I added handling for audio interruptions same as if the game is focused out and then back in. | ||||
| * | Skeletal deform working | Juan Linietsky | 2018-05-04 | 3 | -34/+58 |
| | | |||||
| * | Skeleton for 2D WIP | Juan Linietsky | 2018-05-03 | 7 | -5/+136 |
| | | |||||
| * | Merge pull request #16359 from Noshyaar/convert | Rémi Verschelde | 2018-05-03 | 1 | -1/+1 |
| |\ | | | | | Particles: fix corrupted scene when saved after convert | ||||
| | * | Particles: fix corrupted scene when saved after convert (2nd try) | Poommetee Ketson | 2018-02-24 | 1 | -1/+1 |
| | | | |||||
| * | | Fix delay in rename_error windows save loop, should be 100msec, not 1sec | Robin Hübner | 2018-05-03 | 1 | -1/+1 |
| | | | |||||
| * | | Merge pull request #18372 from Gamblify/largePckFix | Rémi Verschelde | 2018-05-03 | 1 | -3/+3 |
| |\ \ | | | | | | | Fix for large .pck files | ||||
| | * | | Fix for large .pck files | Gustav Lund | 2018-05-03 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | An error in unix file IO was causing crashes when getting the size of a file larger than max integer size As ftell returns a long the fix is trivial | ||||
| * | | | Prevent PulseAudio driver to lock its mutex for too long | Marcelo Fernandez | 2018-05-01 | 1 | -2/+11 |
| | | | | |||||
| * | | | Merge pull request #18334 from Faless/coverity_net | Rémi Verschelde | 2018-05-01 | 5 | -12/+35 |
| |\ \ \ | | | | | | | | | Various coverity scan fixes, WS FreeBSD fixes | ||||
| | * | | | Various coverity scan fixes for networking | Fabio Alessandrelli | 2018-04-21 | 5 | -12/+35 |
| | | | | | | | | | | | | | | | | | Fix FreeBSD websocket compilation error | ||||
| * | | | | Merge pull request #18321 from Crazy-P/Fixes-logically-dead-code | Rémi Verschelde | 2018-05-01 | 1 | -2/+0 |
| |\ \ \ \ | | | | | | | | | | | Fixes logically dead code (Coverity) | ||||
| | * | | | | Fixes logically dead code (Coverity) | Crazy-P | 2018-04-21 | 1 | -2/+0 |
| | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes reported logically dead codes by Coverity * image.cpp: Doesn't really need any modification. But to remove the bug report then we have to move the MAX call away from the for loop statement. * rasterizer_gles3.cpp: Removes unnecessary elif condition since it is checked earlier in the function * collada.cpp: If stamement never reached due to macro ERR_CONTINUE does the same. * navigation_mesh.cpp: Variables should always be null - however, also checked for the very same condition in their function call. Leaving this for review (whether the function call is necessary or not) * path_editor_plugin.cpp: If cancel is true, then it should restore the edited value to the original provided. http://docs.godotengine.org/en/3.0/classes/class_editorspatialgizmo.html#class-editorspatialgizmo-commit-handle * spatial_editor_gizmos.cpp: the very condition of i >= 3 is predetermined in the if case right before it. Thus case 1 is always '1' and case 2 is always '-1' * grid_map_editor.cpp: Same as above in spatial_editor_gizmos.cpp * voxel_light_baker.cpp: Same as above in spatial_editor_gizmos.cpp * visual_server.cpp: Same as above in spatial_editor_gizmos.cpp * visual_script_expression.cpp: char '-' is already true in the switch case mechanism. Thus it can never reach to default case. * particles.cpp: Case 'PARAM_MAX' is unreachable due to index checking right before the switch execution. * shader_language.cpp: Invalid index is handled in switch default case. `type < TYPE_FLOAT && type > TYPE_VEC4` -> `(type < TYPE_FLOAT || type > TYPE_VEC4`) Fixes the "always false problem" in TODO comment. | ||||
| * | / / | GDNative Unix: fix shared lib loading, dlopen expects leading ./ to ↵ | Robin Hübner | 2018-04-28 | 1 | -0/+6 |
| | |/ / |/| | | | | | | | | interpret as relative path. | ||||
| * | | | Change ".." punctuation for "..." in editor strings (#16507) | Hugo Locurcio | 2018-04-22 | 3 | -3/+3 |
| |/ / | |||||
| * | | Merge pull request #18316 from Noshyaar/http | Max Hilbrunner | 2018-04-20 | 1 | -1/+1 |
| |\ \ | | | | | | | [DOCS] add HTTPRequest.request return values | ||||
| | * | | [DOCS] add HTTPRequest.request return values | Poommetee Ketson | 2018-04-20 | 1 | -1/+1 |
| | | | | |||||
| * | | | Fix case mismatch check on Windows | Rémi Verschelde | 2018-04-18 | 1 | -9/+12 |
| | | | | | | | | | | | | | | | | | | | @reduz pushed the old 44989bc95754b40f4c00f10db43ed91f64a3e475 commit today which he had forgotten in his local clone, and apparently it does not compile. Also fixed style. | ||||
| * | | | Test and warn of case mismatch on Windows | Juan Linietsky | 2018-04-18 | 1 | -0/+18 |
| | | | | | | | | | | | | | Will throw a warning when a file is opened with a different case than what is stored on the Windows filesystem. | ||||
| * | | | Merge pull request #17391 from PJB3005/18-03-09-fix-canvas-light-shaders | Rémi Verschelde | 2018-04-18 | 2 | -28/+34 |
| |\ \ \ | |/ / |/| | | Fixes canvas light shaders. | ||||
| | * | | Fixes canvas light shaders. | Pieter-Jan Briers | 2018-04-13 | 2 | -28/+34 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #16904 Restore more out functionality, fix built-ins. Requested changes, I think? | ||||
| * | | | Fixed high cpu usage with PulseAudio | Marcelo Fernandez | 2018-04-15 | 1 | -1/+5 |
| |/ / | |||||
| * | | Fix PulseAudio problems with 8 channels devices | Marcelo Fernandez | 2018-04-12 | 2 | -27/+26 |
| | | | |||||
| * | | Merge pull request #18124 from marcelofg55/pulse_channels | Rémi Verschelde | 2018-04-12 | 1 | -2/+3 |
| |\ \ | | | | | | | Fix PulseAudio driver for audio devices that report unknown number of channels | ||||
| | * | | Fix PulseAudio driver for audio devices that report unknown number of channels | Marcelo Fernandez | 2018-04-12 | 1 | -2/+3 |
| | | | | |||||
| * | | | Fix error detecting for PulseAudio pa_stream_new call | Marcelo Fernandez | 2018-04-11 | 1 | -1/+4 |
| |/ / | |||||
| * | | CoreAudio: Fix iphone build after audio device refactor (#17742) | Rémi Verschelde | 2018-04-10 | 1 | -0/+2 |
| | | | |||||
| * | | Merge pull request #18047 from marcelofg55/mingw_fix | Rémi Verschelde | 2018-04-10 | 1 | -0/+11 |
| |\ \ | | | | | | | WASAPI audio driver compile fix on mingw | ||||
| | * | | WASAPI audio driver compile fix on mingw | Marcelo Fernandez | 2018-04-09 | 1 | -0/+11 |
| | | | | |||||
| * | | | Merge pull request #16503 from Chaosus/particlesfix | Juan Linietsky | 2018-04-08 | 1 | -3/+17 |
| |\ \ \ | | | | | | | | | Fix invalid particle movement when time_scale is zero | ||||
| | * | | | Fix invalid particle movement when time_scale is zero | Chaosus | 2018-02-14 | 1 | -3/+17 |
| | | | | | |||||
| * | | | | Merge pull request #17421 from Chaosus/fixshaderbugs | Juan Linietsky | 2018-04-08 | 1 | -3/+3 |
| |\ \ \ \ | |_|/ / |/| | | | Fix few bugs in shader definitions | ||||
| | * | | | Fix few bugs in shader definitions | Chaosus | 2018-03-10 | 1 | -3/+3 |
| | | | | | |||||
| * | | | | Merge pull request #17742 from marcelofg55/audio_device_list | Juan Linietsky | 2018-04-07 | 8 | -192/+739 |
| |\ \ \ \ | | | | | | | | | | | Added new audio device functions to set/get the audio device | ||||
| | * | | | | Added new audio device functions to set/get the audio device | Marcelo Fernandez | 2018-03-26 | 8 | -192/+739 |
| | | | | | | |||||
| * | | | | | Merge pull request #17775 from sketchyfun/multiply_blendmode_fix | Rémi Verschelde | 2018-04-04 | 1 | -2/+2 |
| |\ \ \ \ \ | | | | | | | | | | | | | multiply blend mode fix for spatial materials | ||||
| | * | | | | | multiply blend mode fix for spatial materials | Ben Hickling | 2018-03-26 | 1 | -2/+2 |
| | |/ / / / | |||||
| * | | | | | Merge pull request #17869 from TomDobbelaere/rename-error-usability | Rémi Verschelde | 2018-04-03 | 1 | -4/+7 |
| |\ \ \ \ \ | | | | | | | | | | | | | Trigger rename_error's close_fail_notify only after exhausting attempts on Windows | ||||
| | * | | | | | Trigger IO error only after exhausting attempts | Tom Dobbelaere | 2018-04-03 | 1 | -4/+7 |
| | |/ / / / | |||||
| * / / / / | WASAPI driver will now resample when the device rate != audio/mix_rate | Marcelo Fernandez | 2018-03-29 | 1 | -4/+13 |
| |/ / / / | |||||
| * | | | | Merge pull request #17653 from eska014/rwlock-dummy | Rémi Verschelde | 2018-03-21 | 3 | -3/+4 |
| |\ \ \ \ | | | | | | | | | | | Add RWLockDummy for NO_THREADS builds | ||||
| | * | | | | Add RWLockDummy for NO_THREADS builds | Leon Krause | 2018-03-20 | 3 | -3/+4 |
| | | | | | | |||||
| * | | | | | s/2017/2018/g for gles2, websocket, linux appdata | Poommetee Ketson | 2018-03-21 | 12 | -24/+24 |
| |/ / / / | |||||
| * | | | | Merge pull request #17130 from nical/issue-17050 | Hein-Pieter van Braam | 2018-03-16 | 1 | -1/+1 |
| |\ \ \ \ | | | | | | | | | | | Fix polyline rendering when width <= 1. | ||||
| | * | | | | Use GL_LINE_STRIP instead of GL_LINES when drawing polylines. | Nicolas Silva | 2018-02-28 | 1 | -1/+1 |
| | | | | | | |||||
| * | | | | | Merge pull request #17376 from marcelofg55/file_get_path | Hein-Pieter van Braam | 2018-03-15 | 4 | -5/+37 |
| |\ \ \ \ \ | | | | | | | | | | | | | Added File.get_path and File.get_path_absolute functions | ||||
| | * | | | | | Added File.get_path and File.get_path_absolute functions | Marcelo Fernandez | 2018-03-13 | 4 | -5/+37 |
| | | |/ / / | |/| | | | |||||
| * | | | | | Merge pull request #16895 from Noshyaar/bmk | Rémi Verschelde | 2018-03-13 | 1 | -1/+1 |
| |\ \ \ \ \ | | | | | | | | | | | | | Fix get_drive (bookmarks) in linux not working | ||||
| | * | | | | | Fix get_drive (bookmarks) in linux not working | Poommetee Ketson | 2018-02-21 | 1 | -1/+1 |
| | | | | | | | |||||
| * | | | | | | Merge pull request #17141 from marcelofg55/uneven_channels | Rémi Verschelde | 2018-03-13 | 2 | -19/+46 |
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | Support for uneven amount of channels on PulseAudio | ||||
