Commit graph

4788 commits

Author SHA1 Message Date
Rémi Verschelde
02aeac12d1 OSX export: Default to fat format, make it an enum
Since we want to distribute only the fat binary in the official templates, this should
make it work out of the box. 32 bits and 64 bits options are still available for people
that want them, but will throw an error if the binaries are not in the template zip.
2016-07-09 00:46:10 +02:00
Rémi Verschelde
69c8b583e7 classref: Add docs for InputEvent* and InputMap 2016-07-08 23:41:07 +02:00
Rémi Verschelde
a15de80942 classref: Fix arg name for is_action_pressed/released
Also position TEXTURE_SPHERE constant properly.
2016-07-08 23:40:43 +02:00
Rémi Verschelde
288355afe9 classref: Fix descriptions indentation after #5588 2016-07-08 22:55:14 +02:00
Rémi Verschelde
78601c8434 Merge pull request #5601 from eska014/emscripten-mouse-pos
Fix Input singleton mouse position in web export
2016-07-08 21:26:30 +02:00
eska
4beeff9433 Pass mouse position to Input singleton in web export 2016-07-08 20:09:25 +02:00
Juan Linietsky
20aee6f528 Merge pull request #5598 from TheHX/issue-5482
Fix own world option of Viewport.
2016-07-08 15:05:57 -03:00
Franklin Sobrinho
6b154c9706 Fix own world option of Viewport.
It happens when the viewport has WorldEnviroment child with a valid Enviroment
2016-07-08 14:27:19 -03:00
Rémi Verschelde
5a8335436f Merge pull request #5588 from J08nY/doctool-indentation
Doctool: change content indentation
2016-07-08 19:11:21 +02:00
Rémi Verschelde
d7dd10a1a2 Cleanup: drop ImportSettingsDialog, replaced by contextual actions
Note that it was already commented out.
2016-07-08 17:09:36 +02:00
Juan Linietsky
7e3044981e Avoid crash if setting modifiers fails, closes #5158 2016-07-08 11:28:09 -03:00
Rémi Verschelde
dc58be9f35 ScenesDock: Fix regression in tree generation
Was a regression from 3fcb9b1ec1.
Fixes #5590.
2016-07-08 09:15:43 +02:00
Juan Linietsky
d8c31e0e74 remove warnings if a script is missing and can't be opened 2016-07-07 21:27:20 -03:00
Juan Linietsky
a1d841e6f7 do not allow removal of groups that come from instanced/inherited scene, closes #5505 2016-07-07 20:50:42 -03:00
J08nY
f5ce4e251d
Classref: update with new doctool indentation 2016-07-08 00:25:54 +02:00
J08nY
5c77abd8a8
Doctool: correct XML indentation
fixes #4483
2016-07-07 23:50:36 +02:00
Rémi Verschelde
f1e1910ae4 Merge pull request #5538 from akien-mga/pr-unused-var
Removed unused variables + dead code
2016-07-07 23:27:42 +02:00
Rémi Verschelde
454b210242 Remove unused variables (third pass) + dead code
Fixes various gcc 5.4.0 warnings for -Wunused-variable and -Wunused-but-set-variable
2016-07-07 23:16:21 +02:00
Rémi Verschelde
3fcb9b1ec1 Removed unused variables (second pass) + dead code
Fixes various gcc 5.4.0 warnings for -Wunused-variable and -Wunused-but-set-variable
2016-07-07 23:15:59 +02:00
Rémi Verschelde
b6ac91c0e6 Removed unused variables (first pass)
Fixes various gcc 5.4.0 warnings for -Wunused-variable and -Wunused-but-set-variable
2016-07-07 23:15:03 +02:00
Rémi Verschelde
1b9433594e SceneTreeDock: Fix wrong argument in _has_visible_children
Seen while checking for unused variables, which `child` was.
2016-07-07 08:37:38 +02:00
Rémi Verschelde
779bf6eca3 Merge pull request #5577 from vnen/improve-quickopen-listing
Improve quick open sorting
2016-07-07 07:47:10 +02:00
Juan Linietsky
7c1ab42571 Fix the +1 button to insert keyframes in Sprite and Sprite3D, closes #5422 2016-07-06 23:46:04 -03:00
Juan Linietsky
17e4ead62a Fix several bugs related to node duplication and signals, closes #5405 2016-07-06 21:43:31 -03:00
Juan Linietsky
a78226c32c Only allow built-in scripts to be edited when the scene they belong to is loaded, closes #5403 2016-07-06 20:36:37 -03:00
George Marques
1bc8d1900f
Improve quick open sorting
Perfect matches and substrings will be shown first. Similar matches will
be at the bottom. When they score is the same they're shown in the natural
file system order.
2016-07-06 19:29:15 -03:00
Rémi Verschelde
e4b7a45a38 Initialize the SSL certificates in the project manager 2016-07-06 20:50:07 +02:00
Rémi Verschelde
9238de4ea9 Merge pull request #5569 from pkowal1982/capitalize
Update String.capitalize() documentation
2016-07-06 10:39:33 +02:00
Pawel Kowal
fe49b71804 Update String.capitalize() documentation 2016-07-06 10:33:27 +02:00
Rémi Verschelde
4316a17c02 Merge pull request #5564 from vnen/fix-xml-constants-sorting
Fix documentation constants sorting
2016-07-06 08:06:22 +02:00
George Marques
eecf4ff273
Update classes.xml to fix sorting of constants 2016-07-05 17:09:16 -03:00
George Marques
29b62ce5d0
Make sure builtin types' constants remain in order
This adds a list of constants for VariantCall to make sure the order of
register is kept when showing in the editor help and in the documentation.

This also remove the sorting of constants from the doctool, so it keeps
the natural order in classes.xml.
2016-07-05 17:09:16 -03:00
Rémi Verschelde
647dc1e214 Merge pull request #5562 from J08nY/hq2x-fix
Fixed HQ2x compiler warnings
2016-07-05 22:04:44 +02:00
J08nY
0f767fe8b9
Fixed HQ2x compiler warnings 2016-07-05 16:52:31 +02:00
Rémi Verschelde
628b0a9375 Revert "Fix return type for EditorResourcePreview::check_for_invalidation"
This reverts commit 716dfa67a3, since it was later
fixes differently with c6b55e45e9256bb41b2d045d8c61d1946de881b1...
2016-07-05 07:28:53 +02:00
Juan Linietsky
c6b55e45e9 added missing return value 2016-07-04 21:08:44 -03:00
Rémi Verschelde
90b5b0d1c9 Merge pull request #5552 from volzhs/fix-jni-null
Fix crash when null value through jni on android
2016-07-04 23:39:31 +02:00
Rémi Verschelde
176920278f Merge pull request #5551 from eska014/bsd-no-libdl
Link libdl only on Linux, fix BSD build
2016-07-04 23:39:11 +02:00
Rémi Verschelde
66856a11d7 Merge pull request #5549 from TheHX/fix-issue-4608
Fix TreeItem range editing by dragging on the inspector
2016-07-04 23:38:29 +02:00
Rémi Verschelde
ca6d52cd68 Merge pull request #5548 from TheHX/fix-plugin-spatial-event
Fix EditorPlugin::forward_spatial_input_event in GDScripts addons
2016-07-04 23:37:56 +02:00
Rémi Verschelde
9731da3280 Merge pull request #5547 from TheHX/fix-addons-disabling
Fix addon disabling
2016-07-04 23:36:58 +02:00
volzhs
b09dbaa78e Fix crash when null value through jni on android 2016-07-05 04:41:46 +09:00
Rémi Verschelde
716dfa67a3 Fix return type for EditorResourcePreview::check_for_invalidation 2016-07-04 19:45:14 +02:00
eska
a2386bd2b2 Link libdl only on Linux, fix BSD build 2016-07-04 18:39:27 +02:00
Franklin Sobrinho
5c3c87206b Fix TreeItem range editing by dragging on the inspector 2016-07-04 12:14:49 -03:00
Franklin Sobrinho
22cf80eede Fix EditorPlugin::forward_spatial_input_event in GDScripts addons 2016-07-04 11:03:22 -03:00
Franklin Sobrinho
f97ff474d5 Fix addon disabling 2016-07-04 10:43:07 -03:00
Rémi Verschelde
576a28470f Merge pull request #5539 from vnen/fix-completion-crash
Fix completion string check when column = 0
2016-07-04 07:24:30 +02:00
Juan Linietsky
1e095cf397 fix to the fix, and removed some conflicting shorcuts 2016-07-03 19:50:52 -03:00
Juan Linietsky
7e50a9a2e8 Avoid settings from being lost when opening project manager.
Probably fixes many issues of this kind, like missing shortcuts or other settings
2016-07-03 19:14:58 -03:00