| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2017-08-01 | Fix AudioServer::finish not getting called while quitting | Marcelo Fernandez | 2 | -1/+3 | |
| 2017-08-02 | Tree: fix index error with expanded column | Poommetee Ketson | 1 | -1/+0 | |
| 2017-08-02 | MenuButton: defer grab_click_focus until button_up | Poommetee Ketson | 1 | -1/+1 | |
| 2017-08-01 | made delete next and prev consistent to other editors,issue 6546 | Paulb23 | 1 | -52/+52 | |
| 2017-07-31 | Fix possible division by zero crashes on the wav importer | Marcelo Fernandez | 1 | -2/+2 | |
| 2017-08-01 | Fix equality when assignment intended | Pedro J. Estébanez | 1 | -1/+1 | |
| 2017-08-01 | Use atomics for memory use tracking | Pedro J. Estébanez | 2 | -25/+27 | |
| Plus: - An allocation is counted only after checking its success. - Max usage is updated after growing reallocs as well. - Drop unused header. - Changed the 0xFFF.. at get_mem_available() to -1 with a comment telling it's the same, but more universal. | |||||
| 2017-08-01 | Make memory monitors query the right counters | Pedro J. Estébanez | 1 | -2/+2 | |
| 2017-08-01 | Improve cleanup of physics constraints | Pedro J. Estébanez | 6 | -13/+37 | |
| Don't abort the loop when one is already released Remove warning on already-released constraint Clean up area's contraints as well Clear the constraint data as well Do the cleanup as soon as the space changes | |||||
| 2017-07-31 | Some theme and usability improvements | Daniel J. Ramirez | 7 | -52/+78 | |
| Fixed create script editor dialog not changing extension Options menu for inspector element is bigger | |||||
| 2017-07-31 | SpatialEditor: fix transform dialog | Poommetee Ketson | 1 | -22/+26 | |
| 2017-07-31 | Bind some useful methods in SurfaceTool to GDScript | Andrii Doroshenko (Xrayez) | 1 | -4/+15 | |
| These include: * generate_tangents() * add_to_format() * create_from() * append_from() Reordered and grouped the bindings to match the header for improved readability. Removed commented out `generate_flat_normals()` method which wasn't present in the header. Fixes #9946 | |||||
| 2017-07-31 | Fix property type expose of Control.stretch_ratio. | Geequlim | 2 | -2/+2 | |
| Fix set integer value from inspector to round instead of floor. | |||||
| 2017-07-30 | Style: Apply clang-format on all files | Rémi Verschelde | 45 | -58/+57 | |
| Thus fixing some invalid changes that had still made it to the master branch. | |||||
| 2017-07-30 | Revert "PropertyEditor: display "Off" if property is false" | Rémi Verschelde | 1 | -2/+1 | |
| This reverts commit 5adb94e72694fd4c4b80be85b3adf9a4a7d6c45b. It was actually not a bug, see discussion on #9898. | |||||
| 2017-07-30 | Fix mutex initialisation in OS X Audio Driver | Marcelo Fernandez | 2 | -26/+28 | |
| 2017-07-30 | [NativeScript] fix signals from base class not being accessible | Karroffel | 1 | -3/+7 | |
| https://github.com/GodotNativeTools/cpp_bindings/issues/26 | |||||
| 2017-07-29 | ScriptEditor -> 'script_close' signal hint correction | Jakub Grzesik | 1 | -1/+1 | |
| 2017-07-29 | PropertyEditor: Fix easing_curve blocking popup input | Poommetee Ketson | 1 | -5/+5 | |
| 2017-07-29 | Fixed AudioStreamPlaybackOGGVorbis::_mix_internal getting stuck in infinite ↵ | Fabian Mathews | 1 | -1/+1 | |
| loop causing audio to freeze | |||||
| 2017-07-29 | Update SCsub file for /servers/ folder | ISylvox | 1 | -2/+0 | |
| 2017-07-29 | Few small GI Probe fixes | Juan Linietsky | 5 | -14/+18 | |
| 2017-07-28 | Fix get_screen_* funcs returning old values after resolution changes on OS X | Marcelo Fernandez | 2 | -42/+45 | |
| 2017-07-28 | Change display scale when moving the window from monitor to monitor | bruvzg | 1 | -0/+30 | |
| 2017-07-28 | Fix passing Refs via ptrcall | Ruslan Mustakov | 1 | -3/+3 | |
| There was no constructor for Ref from const pointer, so compiler decided to construct Variant from pointer and then construct Ref from Variant which turned it into NULL, because the Variant had null ref field. | |||||
| 2017-07-28 | Pass GDNativeLibrary pointer to library init | Ruslan Mustakov | 2 | -0/+4 | |
| 2017-07-28 | correct RMB options for instanced inherited scene | Jakub Grzesik | 1 | -2/+2 | |
| When scene is inherited and later instanced as a part of another scene, only options related to instancing will be visible - same behavior as in 2.x closes #9901 | |||||
| 2017-07-27 | BUGFIX: Check for "VCINSTALLDIR" environment variable instead of ↵ | Brent Taylor | 1 | -1/+1 | |
| "VSINSTALLDIR". | |||||
| 2017-07-28 | fix missing DEFVAL | AlexHolly | 1 | -1/+1 | |
| 2017-07-28 | Adding base classes and structures for ARVR support | BastiaanOlij | 25 | -36/+1746 | |
| Added ArVrScriptInterface Added ARVRCamera, ARVRController and ARVROrigin helper objects | |||||
| 2017-07-27 | Do not allow multiple data connections to the same data input slot, fixes ↵ | Daniel J. Ramirez | 2 | -1/+11 | |
| #6357.Improved curve rendering when nodes are close. | |||||
| 2017-07-27 | Documentation update for KinematicBody.move() | Jakub Grzesik | 1 | -3/+21 | |
| 2017-07-27 | Fix Android debug/run | Pedro J. Estébanez | 1 | -6/+21 | |
| - Prefix all __adb__ commands with device specification to avoid errors when multiple devices connected. - Include Android release in device data collection. - Force system user:. - Ability to enable/disable. - Apply only if OS release >= 17 (when multiuser was introduced. - Fix argument passing. - Rename local variable `port` to `dbg_port` to better match its partner `fs_port`. - Fix typo in error message. | |||||
| 2017-07-27 | Add missing max. number of samples (MSAA) check | bruvzg | 1 | -0/+7 | |
| 2017-07-27 | [NativeScript] fixed optional _init call | Karroffel | 1 | -18/+6 | |
| In 3c53b35 a call to an "_init" function was introduced, that however was only executed in the `_new` function, also it *required* that such a function exists. With this patch the "_init" function will be optionally called on every instance creation. | |||||
| 2017-07-27 | [NativeScript] fix mutex double lock | Karroffel | 1 | -1/+1 | |
| In 3c53b35 a bug got introduced where a mutex gets locked twice instead of locked and then unlocked. This path fixes that. | |||||
| 2017-07-27 | firsts docs for CollisionObject -> collision shape api | Jakub Grzesik | 1 | -0/+122 | |
| 2017-07-27 | added an optional parameter to OS symbol lookup | Karroffel | 7 | -14/+25 | |
| When looking up a symbol from a library, previously an error was shown when the symbol did not exist. That caused confusion when the lookup was completely optional. This adds a new parameter to that method so that those errors can be handled manually if needed. | |||||
| 2017-07-27 | [NativeScript] call _init on instance creation | Karroffel | 2 | -3/+45 | |
| This also adds basic locking for the set of owners to avoid threading problems | |||||
| 2017-07-27 | ThemeEditor: fix broken dialog | Poommetee Ketson | 2 | -34/+28 | |
| 2017-07-27 | Fix is_window_fullscreen() and set_window_fullscreen() behaviour after ↵ | bruvzg | 2 | -7/+22 | |
| window has entered/left full-screen mode via green zoom button. Fix get/set_current_screen & set_window_maximized. | |||||
| 2017-07-27 | Add macOS main menu | bruvzg | 1 | -3/+43 | |
| 2017-07-27 | PropertyEditor: display "Off" if property is false | Poommetee Ketson | 1 | -1/+2 | |
| 2017-07-27 | Initialize freelook shortcuts properly | Marc Gilleron | 1 | -7/+15 | |
| 2017-07-27 | Fix misplaced quote in error messsage | Pedro J. Estébanez | 1 | -1/+1 | |
| 2017-07-26 | Fixes power management on x11 platform and removes explicit NULL pointer ↵ | Julian Murgia | 2 | -9/+4 | |
| dereference. | |||||
| 2017-07-26 | Fix Numpad Enter key on Windows | bruvzg | 1 | -1/+6 | |
| 2017-07-26 | Fix $a/b being parsed as division | Bojidar Marinov | 1 | -1/+2 | |
| 2017-07-26 | Forward refcount changes to NativeScriptInstance | Ruslan Mustakov | 3 | -1/+27 | |
| This also changes Reference::unreference() to always invoke refcount_decremented. Previously it was not invoked until the count reached zero due to short-circuit evalution of boolean expressions. | |||||
| 2017-07-26 | Fix mutating project.godot | Pedro J. Estébanez | 3 | -38/+41 | |
| Namely: - comment block lost on first save; - config_version doubled as 3 and null on second save; - format change on first save. | |||||
