summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-09-15Fix set_default_cursor_shape interaction with Control nodesMartin Capitanio
Do not call `set_cursor_shape` when the cursor is inside the `Control` node. Make it work for x11 in MOUSE_MODE_CONFINED.
2018-09-15Merge pull request #22069 from scayze/fix_reload_scriptsRémi Verschelde
Fix scripts not reloading when edited externally
2018-09-15Merge pull request #21973 from guilhermefelipecgs/fix_default_cursor_shapeRémi Verschelde
Some fixes to mouse's cursor and shape
2018-09-15doc: Sync classref with current sourceRémi Verschelde
2018-09-15Merge pull request #22090 from godotengine/break-the-chains-of-scrollbarRémi Verschelde
Rename ScrollBar's drag_slave to drag_node
2018-09-15Merge pull request #22087 from Faless/master_of_puppetsRémi Verschelde
Deprecate slave keyword in favor of puppet.
2018-09-15Merge pull request #22092 from akien-mga/video-toggle-regressionRémi Verschelde
Fix video toggle UX issue
2018-09-15Add GDScript slave keyword deprecation warning.Fabio Alessandrelli
2018-09-15Fix video toggle UX issueRémi Verschelde
It was still functional but showing duplicate entries and thus "GLES2" for both GLES2 and GLES3 choices. Fixes #22089.
2018-09-15Rename ScrollBar's drag_slave to drag_nodeRémi Verschelde
2018-09-15Clearly deprecate sync too in favor of remotesync.Fabio Alessandrelli
NOTE: This changes the RPC_MODE_* enum values. Games should be re-exported. GDNative rebuilt.
2018-09-15Rename slave keyword to puppetFabio Alessandrelli
The slave keyword will still be available as deprecated in 3.1 but will be dropped from future releases.
2018-09-14Merge pull request #22081 from akien-mga/canvasitem-zoom-equalRémi Verschelde
Set default CanvasItemEditor zoom shortcut to KEY_EQUAL
2018-09-14Merge pull request #22080 from YeldhamDev/expose_get_top_modal_stackRémi Verschelde
Expose "get_modal_stack_top()" to GDScript
2018-09-14Merge pull request #22078 from akien-mga/boot_bg_colorRémi Verschelde
Make boot splash background color always configurable
2018-09-14Set default CanvasItemEditor zoom shortcut to KEY_EQUALRémi Verschelde
At least on en_US QWERTY (and various QWERTY-derived variants) and fr_FR AZERTY, "+" is an indirect key obtained by pressing "Shift" + "=", so using "=" in the binding makes it easier to access. It doesn't work this way on other layouts like de_DE QWERTZ though, but since 'script_editor/zoom_in' also uses KEY_EQUAL, setting the same for consistency. Fixes #22067.
2018-09-14Expose "get_modal_stack_top()" to GDScriptMichael Alexsander Silva Dias
2018-09-14Make boot splash background color always configurableRémi Verschelde
This also means that you can keep the default Godot splash and set your own custom background color. Fixes #22076.
2018-09-14Merge pull request #22074 from willnationsdev/plugin-descriptionRémi Verschelde
Add EditorPlugin descriptions to their tooltip
2018-09-14Add EditorPlugin descriptions to their tooltipWill Nations
2018-09-14ProjectSettings: Fix InputMap editor on HiDPIRémi Verschelde
Fixes #20898.
2018-09-14Merge pull request #21954 from isaacremnant/fix_inputsRémi Verschelde
Fix is_action_pressed for InputEventActions
2018-09-14Merge pull request #22026 from fire/scons_vsproj_17843Rémi Verschelde
Fix #17843 describing inability to generate vs projects without being…
2018-09-14Merge pull request #22051 from fire/vs_expression_20885Rémi Verschelde
Update visual scripting to use new expression class #20885
2018-09-14fix scripts not reloading when edited externallyManuel Strey
2018-09-14Merge pull request #21717 from willnationsdev/edicon-refactorRémi Verschelde
Refactor editor icon retrieval
2018-09-14Merge pull request #21569 from JFonS/add_noise_texturesRémi Verschelde
Add SimplexNoise and NoiseTexture as new resources
2018-09-14Refactor editor icon retrievalwillnationsdev
2018-09-14Add SimplexNoise and NoiseTexture as new resourcesJFonS
SimplexNoise can be used to generate parameterized fractal noise based on Open Simplex. NoiseTexture uses SimplexNoise to generate noise textures for using in shaders/visual effects.
2018-09-14Merge pull request #21502 from Web-eWorks/atlasfixesRémi Verschelde
AtlasTexture fixes, part 2.
2018-09-14doc: Mention get_node in Node.get_child documentationRémi Verschelde
See #22052.
2018-09-14Merge pull request #22057 from elasota/fix-compressed-zero-byteRémi Verschelde
Fix get_8 returning 0 for last byte of compressed files
2018-09-14Merge pull request #22053 from akien-mga/animtexture-frame-internalRémi Verschelde
Mark AnimatedTexture frame_* properties as internal
2018-09-14Merge pull request #22035 from karroffel/gdnative-variant-opRémi Verschelde
[GDNative] add Variant::Operator
2018-09-13Fix FileAccessCompressed::get_8 returning 0 for the last byte of a fileelasota
2018-09-13Merge pull request #21806 from JFonS/inspector_uniform_defaultsJuan Linietsky
Set uniform default values in inspector
2018-09-13Set uniform default values in inspectorJFonS
2018-09-13Mark AnimatedTexture frame_* properties as internalRémi Verschelde
This way they no longer appear in the documentation, and the related setters and getters do.
2018-09-13Update visual scripting to use new expression class #20885K. S. Ernest (iFire) Lee
2018-09-13Fix set_custom_mouse_cursor changing to incorrect cursor shapeGuilherme Felipe
[Docs] Add class ref for Input::set_default_cursor_shape
2018-09-13Merge pull request #22027 from akien-mga/plain-text-gles-toggleRémi Verschelde
Use plain text instead of icons for video driver toggle
2018-09-13[GDNative] add Variant::OperatorThomas Herzog
2018-09-13Merge pull request #22034 from mhilbrunner/docs-projectsettings-clearcolorMax Hilbrunner
[DOCS] Project Settings: Default clear color
2018-09-13[DOCS] Project Settings: Default clear colorMax Hilbrunner
2018-09-13Merge pull request #22030 from Faless/sockets_fixesRémi Verschelde
Properly initialize Winsock on startup
2018-09-13Merge pull request #21847 from Calinou/light-gizmo-update-inspectorRémi Verschelde
Update Light properties in the inspector when dragging their gizmos
2018-09-13Properly initialize Winsock on startupFabio Alessandrelli
Also fix typo in _get_last_error which caused Winsock connect to fail.
2018-09-13Merge pull request #21540 from YeldhamDev/image_reimp_error_fixRémi Verschelde
Fix error when reimporting an Image resource
2018-09-13Fix #17843 inability to generate vs projects without being in a MSVC command ↵K. S. Ernest (iFire) Lee
prompt by guessing variables. The vcxproj extension has been in MSVC 2012. The sln extension has been in MSVC 2012.
2018-09-13Document provenance of Penner easing equations in TweenRémi Verschelde
As noted in #21600.