Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-29 | Merge pull request #8986 from Hinsbart/cursor_warning | Rémi Verschelde | |
X11: Turn warning about not finding cursor theme into verbose output. | |||
2017-05-29 | X11: Turn warning about not finding cursor theme into verbose output. | Andreas Haas | |
Failing to get the cursor theme should not cause any issues since we're then using the default one anyway. So I removed the warning and made it a verbose-only print instead, as people tend to mistake it for a real error.. (pretty much like `iCCP: known incorrect sRGB profile` :P) | |||
2017-05-29 | Merge pull request #8978 from noshyaar/pr-sort | Rémi Verschelde | |
NaturalSort: strings start with . treated differently | |||
2017-05-29 | Fixed a typo in a Visual Server var name (#8977) | suptoasty | |
2017-05-29 | NaturalSort: strings start with . treated differently | Poommetee Ketson | |
2017-05-28 | -Added .hdr format support | Juan Linietsky | |
-Added default environment editor setting -Added environment created by default in new projects -Removed default light and ambient from spatial editor, to make the editor more PBR compliant | |||
2017-05-28 | Merge pull request #8975 from timoschwarzer/new-icons | Rémi Verschelde | |
Use new icons everywhere | |||
2017-05-28 | Remove obsolete signal_renames file | Rémi Verschelde | |
2017-05-28 | opus: Update to upstream version 1.1.5 | Rémi Verschelde | |
2017-05-28 | Use new icons everywhere | Timo Schwarzer | |
Closes #8879 | |||
2017-05-28 | Merge pull request #8972 from Kristonitas/master | Rémi Verschelde | |
Fixing typo for rect_position in _change_notify call for Control | |||
2017-05-28 | Fixing typo for rect_position in _change_notify call for Control | Kristupas Stumbrys | |
2017-05-28 | Merge pull request #8966 from voithos/path2d-bezier-handle-fix | Rémi Verschelde | |
Fix moving path controls in edit mode. | |||
2017-05-28 | Merge pull request #8968 from noshyaar/pr-bug2 | Rémi Verschelde | |
CreateDialog: fix activating recent item creates node selected in search result | |||
2017-05-28 | Merge pull request #8967 from noshyaar/pr-bug | Rémi Verschelde | |
CreateDialog: select root if search exactly match | |||
2017-05-28 | CreateDialog: fix activating recent item creates node selected in search result | Poommetee Ketson | |
2017-05-28 | CreateDialog: select root if search exactly match | Poommetee Ketson | |
2017-05-27 | Fix moving path controls in edit mode. | Zaven Muradyan | |
The previous code would never trigger the subsequent conditionals (for moving the control points) when in EDIT_MODE because the point conditionals were nested instead of being a conjunction. | |||
2017-05-27 | Merge pull request #8960 from akien-mga/openssl-1.0.2l | Rémi Verschelde | |
OpenSSL: Cleanup and document update process from upstream sources + 1.0.2l | |||
2017-05-27 | openssl: Sync with upstream 1.0.2l | Rémi Verschelde | |
2017-05-27 | openssl: Reapply necessary UWP changes from patch | Rémi Verschelde | |
2017-05-27 | openssl: Define WIN32_LEAN_AND_MEAN on Windows | Rémi Verschelde | |
This avoids namespace collisions with things such as X509_NAME. Also force include of necessary definitions in `crypto/o_str.c` which seem missing on MSVC (but work on MinGW). | |||
2017-05-27 | openssl: Sync with pristine upstream 1.0.2h | Rémi Verschelde | |
Our necessary custom changes will be reapplied in later commits for clarity, and saved as patches for future updates. | |||
2017-05-27 | openssl: Document update process and delete unused files | Rémi Verschelde | |
2017-05-27 | TinyEXR: Document licensing and copyright | Rémi Verschelde | |
2017-05-27 | Fix MinGW-w64 build of TinyEXR for old toolchains | Rémi Verschelde | |
MinGW-w64 is at version 2.0.1 on our current Travis CI toolchain, and seems not to like fopen_s. | |||
2017-05-27 | Fix text warp in color blocks with CJK | Geequlim | |
(cherry picked from commit cd778e00dc5362d00d4760c79fc301951f6f9b75) | |||
2017-05-27 | Fix item list scroll speed. | Sean Bohan | |
Remove the extra `set_val` action after the proper one, so the right scroll value won’t get overrided any more. (cherry picked from commit 064dce7a4c4bdca13b5358ccc9f9829f0e1068fb) | |||
2017-05-27 | Merge pull request #8956 from mcanders/mcanders/ProfilerInputFix | Rémi Verschelde | |
Fix incorrect input event reference in editor_profiler.cpp | |||
2017-05-27 | Merge pull request #8955 from mcanders/mcanders/AnimationEditorInputFix | Rémi Verschelde | |
Fix incorrect input event reference in animation_editor.cpp | |||
2017-05-27 | Merge pull request #8933 from Hinsbart/is_keyword | Rémi Verschelde | |
GDScript: Use "is" keyword for type checking. | |||
2017-05-27 | Merge pull request #8942 from RandomShaper/warn-levels | Rémi Verschelde | |
Rework warning levels | |||
2017-05-27 | Merge pull request #8936 from Hinsbart/fix_action | Rémi Verschelde | |
Fix InputEvent actions. | |||
2017-05-27 | Merge pull request #8935 from volzhs/get-locale-master | Rémi Verschelde | |
Make OS.get_locale() returns same value | |||
2017-05-27 | Merge pull request #8929 from nunodonato/themecolors | Rémi Verschelde | |
Added color presets for easy theme switching | |||
2017-05-27 | Merge pull request #8928 from nunodonato/helpmenu | Rémi Verschelde | |
Added an help menu | |||
2017-05-27 | Fix incorrect input event reference in editor_profiler.cpp | Carter Anderson | |
2017-05-27 | Fix incorrect input event reference in animation_editor.cpp | Carter Anderson | |
2017-05-27 | GDScript: Use "is" keyword for type checking. | Andreas Haas | |
Replaces the `extends` keyword with `is` in the context of testing for type compatibility. `extends` is still used for declaring class inheritance. Example: ```gdscript extends Node2D func _input(ev): if ev is InputEventKey: print("yay, key event") ``` | |||
2017-05-27 | Fix InputEvent actions. | Andreas Haas | |
The `InputEvent::is_action(pressed|released)` methods weren't implemented yet. Also fixed a typo in `InputDefault` that prevented `Input.is_action(pressed|released)` from working. | |||
2017-05-26 | -Added EXR supprot for HDR (no BC6 compression yet though) | Juan Linietsky | |
-Improvements to texture importer -Proper detection of S3TC compression modes, and added all modes to Image -Fixes to non-power of 2 compressed textures, which should all be supported by GLES3 | |||
2017-05-27 | Rework warning levels | Pedro J. Estébanez | |
Now you have: extra, all (the default), moderate, no. The old 'yes' option is still supported, but a warning will be printed and 'all' will be assumed. The different options will translate to the following: MSVC: extra -> /Wall (implies /W4) all -> /W3 + disable non-essential (*) moderate -> /W2 + disable non-essential (*) no -> /w GCC/Clang: extra -> -Wall -Wextra all -> -Wall moderate -> -Wall -Wno-unused no -> -w * = Truncations, narrowing conversions...: /wd4267 /wd4244 /wd4305 /wd4800 | |||
2017-05-27 | Merge pull request #8939 from RandomShaper/ccflags-iphone | Rémi Verschelde | |
Allow custom CCFLAGS for iPhone builds | |||
2017-05-27 | Allow custom CCFLAGS for iPhone builds | Pedro J. Estébanez | |
plus disable exceptions by default | |||
2017-05-27 | Make OS.get_locale() returns same value | volzhs | |
2017-05-26 | Added color presets for easy theme switching | Nuno Donato | |
Also tweaked the default colors (darker and less satured) | |||
2017-05-26 | Added an help menu | Nuno Donato | |
Also renamed the "tutorials" button in the script editor to be consistent with the help menu entry. Fixed #8921 | |||
2017-05-26 | Merge pull request #8916 from sanikoyes/Pr-fix_audio_stoped_iOS | Rémi Verschelde | |
Fix audio can't resume in iOS platform | |||
2017-05-26 | Merge pull request #8923 from volzhs/fix-android-build-master | Rémi Verschelde | |
Fix android build regression by be7ced4 | |||
2017-05-26 | Fix android build regression by be7ced4 | volzhs | |