Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-10-24 | Fix .pck lookup for extensionless binary names with a dot | Rémi Verschelde | |
This was not a problem on Windows as binary names are guaranteed to end with '.exe', but on Unix systems binary extensions are purely cosmetic and thus optional, which is a problem when using `get_basename()` to lookup a potential '.pck' file, as it can fail on e.g. "My Game 2.0" (#15188). To fix this, ProjectSettings::setup now checks for both basename + '.pck' and filename + '.pck'. Fixes #15188, supersedes and closes #22755. Also took the opportunity to improve documentation on this core method. | |||
2018-10-24 | Merge pull request #22920 from DualMatrix/error_already_connect | Rémi Verschelde | |
Fixed error when duplicating a scene which has connection | |||
2018-10-24 | Merge pull request #22899 from J08nY/fix/assignment-operation-array | Rémi Verschelde | |
Do not make a function that returns Variant::NIL a void function. Fix #22791 | |||
2018-10-24 | Merge pull request #23244 from ColinKinloch/osx_mouse_focus | Rémi Verschelde | |
Update mouse location on background scroll and window focus in macOS | |||
2018-10-24 | Merge pull request #23161 from groud/fix_fav_in_open_dialog | Rémi Verschelde | |
Fixes favorites not working in the open dialog | |||
2018-10-24 | Merge pull request #23094 from RandomShaper/fix-crash-signal-to-danling-obj | Rémi Verschelde | |
Fix crash on signal/resume to dangling target | |||
2018-10-24 | Merge pull request #22968 from jfmichaud31/CSGMesh_bug | Rémi Verschelde | |
fix bug #20255 on CSGMesh | |||
2018-10-24 | Merge pull request #23012 from RandomShaper/fix-touch-speed-tracking | Rémi Verschelde | |
Track screen drag speed | |||
2018-10-24 | Merge pull request #23256 from JFonS/fix_17989 | Rémi Verschelde | |
Fix editor only lights | |||
2018-10-24 | Fixes favorites not working in the open dialog | groud | |
2018-10-24 | Fix editor only lights | JFonS | |
2018-10-24 | Merge pull request #23201 from Ashafix/VectorSlicing | Rémi Verschelde | |
[DOCS] Added section that coordinates can be accessed via indexes | |||
2018-10-24 | Added section that coordinates can be accessed via indexes | Ashafix | |
2018-10-24 | Merge pull request #23255 from CakHuri/doc-projectsettings | Rémi Verschelde | |
[Docs] Repaired some words on ProjectSettings | |||
2018-10-24 | [Docs] Repaired some words on ProjectSettings | M. Huri | |
2018-10-24 | Update mouse location on background scroll and window focus in macOS | Colin Kinloch | |
2018-10-24 | Merge pull request #23100 from pcbeard/osx_blankscreen_fix | Rémi Verschelde | |
macOS: Update context when window becomes the key window | |||
2018-10-24 | Merge pull request #23186 from BastiaanOlij/fix_gles2_stereo_sky | Rémi Verschelde | |
Fixed stereoscopic (VR) sky in GLES2 | |||
2018-10-24 | Merge pull request #23175 from marcelofg55/input_buffer_fix | Rémi Verschelde | |
Fix possible audio input buffer issues | |||
2018-10-24 | Merge pull request #23242 from nekomatata/mesh-instance | Rémi Verschelde | |
Get surface material count in MeshInstance for scripts | |||
2018-10-24 | Merge pull request #23253 from akien-mga/gles2-tangent-typo | Rémi Verschelde | |
GLES2: Fix typo in tangent calculation | |||
2018-10-24 | GLES2: Fix typo in tangent calculation | Rémi Verschelde | |
Thanks @tagcup for the find. Fixes #23234. | |||
2018-10-23 | Merge pull request #23200 from santouits/navpoldocs | Max Hilbrunner | |
NavigationPolygon descriptions of the class and methods | |||
2018-10-23 | Call -update when window becomes the key window | Patrick Beard | |
2018-10-23 | Get surface material count in MeshInstance for scripts | PouleyKetchoupp | |
2018-10-23 | Merge pull request #23238 from dlasalle/specular_fog | Rémi Verschelde | |
Fix gles3 shader to actually multiply specular light by rev_amount for fog calculations. | |||
2018-10-23 | Merge pull request #23241 from Faless/lws_more_fix | Rémi Verschelde | |
Remove unneeded strncpy in lws_client. | |||
2018-10-23 | Add missing EMWSServer::poll function. | Fabio Alessandrelli | |
Empty of course as server is not supported in HTML5, but the symbol must be defined. | |||
2018-10-23 | Remove unneeded strncpy in lws_client. | Fabio Alessandrelli | |
Pass the String buffer directly, lws_client_connect_via_info will copy them for us. | |||
2018-10-23 | Merge pull request #23229 from CakHuri/fix-treshold | Rémi Verschelde | |
Fixed a typo, treshold to threshold. | |||
2018-10-22 | Fix gles3 shader to actually multiply specular light by rev_amount for fog ↵ | Dominique LaSalle | |
calculations. | |||
2018-10-23 | Fixed a typo, treshhold to threshold. | M. Huri | |
2018-10-22 | Merge pull request #23224 from ↵ | Rémi Verschelde | |
capnm/fix-Align-selection-with-view-in-orthogonal-mode Fix 'Align selection with view' in orthogonal mode | |||
2018-10-22 | Merge pull request #23223 from BlackSkySoftware/bugfix/20141 | Rémi Verschelde | |
Fixes crash when loading *.escn resources with gdnative #20141 | |||
2018-10-22 | Fix 'Align selection with view' in orthogonal mode | Martin Capitanio | |
Fixes #23096 | |||
2018-10-22 | Fixes crash when loading *.escn resources with gdnative #20141 | Maarten Heremans | |
The issue is that ResourceFormatLoaderText is a singleton. It was created in a faulty way in ResourceFormatLoaderNativeScript::load It was created on the stack, which caused the static singleton pointer to be overwritten. This causes then segmentation faults if the singleton is used later on. IMO singleton creation needs to made safer to avoid other similar issues in the future. | |||
2018-10-22 | Merge pull request #23204 from Baekalfen/master | Rémi Verschelde | |
Removed undeclared and unused variable, which caused a compile error | |||
2018-10-21 | Merge pull request #23206 from mhilbrunner/docs-streampeertcp | Max Hilbrunner | |
[DOCS] StreamPeerTCP | |||
2018-10-21 | [DOCS] StreamPeerTCP | Max Hilbrunner | |
2018-10-21 | Merge pull request #23205 from mhilbrunner/docs-ysort | Max Hilbrunner | |
[DOCS] YSort | |||
2018-10-21 | [DOCS] YSort | Max Hilbrunner | |
2018-10-21 | Removed undeclared and unused variable, which caused a compile error | Mads Ynddal | |
2018-10-21 | NavigationPolygon descriptions of the class and methods | santouits | |
2018-10-21 | Merge pull request #23196 from Paulb23/scene_tab_errors_issue_22890 | Rémi Verschelde | |
Scene tabs closing and thumbnail errors, issue 22890 | |||
2018-10-21 | Don't create scene thumbnail before its saved, issue 22890 | Paulb23 | |
2018-10-21 | Update Tab hover status when adding or removing tabs, issue 22890 | Paulb23 | |
2018-10-21 | Merge pull request #23181 from Calinou/tweak-min-panel-sizes-hidpi | Rémi Verschelde | |
Resize some editor panel minimum sizes on hiDPI displays | |||
2018-10-21 | Merge pull request #22972 from YeldhamDev/3d_view_perspective_button | Timo | |
Make "Perspective" button look like a actual clickable button | |||
2018-10-21 | Fixed stereoscopic (VR) sky in GLES2 | Bastiaan Olij | |
2018-10-20 | Resize some editor panel minimum sizes on hiDPI displays | Hugo Locurcio | |
This also increases the plugin description TextEdit's height, so that 3 lines can be viewed instead of just 2 (leaving a few pixels for the scroll bar). |