Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2017-05-26 | Fixed audio can not resume if it is interrupted cause by an incoming phone call | sanikoyes | |
2017-05-26 | Merge pull request #8901 from tagcup/path_editor_plugin | Rémi Verschelde | |
Revive PathEditorPlugin. | |||
2017-05-26 | Merge pull request #8912 from RandomShaper/ios-alert | Rémi Verschelde | |
Implement OS.alert() for iOS | |||
2017-05-25 | Fix echo key event handling. | Andreas Haas | |
2017-05-25 | Fix virtual methods in InputEventKey. | Andreas Haas | |
This fixes a lot of problems with key input in the engine. | |||
2017-05-25 | Merge pull request #8590 from tagcup/s3tc_stuff | Juan Linietsky | |
Use libsquish to decompress DXT textures. | |||
2017-05-25 | Removed skybox support, added panorama support. Skybox support may come back ↵ | Juan Linietsky | |
eventually, but hope not. | |||
2017-05-25 | Implement OS.alert() for iOS | Pedro J. Estébanez | |
2017-05-25 | Applied clang-format. | Ferenc Arn | |
Since PathEditorPlugin was commented out, it didn't get clang-format'ed. | |||
2017-05-25 | Merge pull request #8898 from vnen/screentouch-struct-class | Rémi Verschelde | |
Change InputEventScreenTouch from struct to class | |||
2017-05-25 | Merge pull request #8895 from nunodonato/newdefaultcolors | Rémi Verschelde | |
Improved default colors for the new theme | |||
2017-05-25 | Merge pull request #8891 from nunodonato/newmenu | Rémi Verschelde | |
Join text menus on the top-left, move shortcut buttons to new locations (Preliminary work towards achieving the changes discussed in #8865.) | |||
2017-05-25 | Merge pull request #8885 from capnm/fix-2d-editor-zoom | Rémi Verschelde | |
Fix 2D-editor mouse wheel zoom for x11. | |||
2017-05-25 | Merge pull request #8878 from BastiaanOlij/ios_make_arm64_default | Rémi Verschelde | |
Make arm64 the default option and set minimum to iOS 9 | |||
2017-05-25 | Merge pull request #8869 from Hinsbart/errors | Rémi Verschelde | |
Fix errors on engine startup. | |||
2017-05-24 | Revive PathEditorPlugin. | Ferenc Arn | |
Adapted the plugin to recent changes in input classes and pool arrays. Fixed an out-of-bounds bug in the process. Doesn't display anything for a single point (existing issue). | |||
2017-05-24 | Join text menus on the top-left, move shortcut buttons to new location | Nuno Donato | |
2017-05-24 | Improved default colors for the new theme | Nuno Donato | |
Colors inspired from solarized themes. Also moved the theme settings to the Interface category. | |||
2017-05-24 | Change InputEventScreenTouch from struct to class | George Marques | |
2017-05-24 | Fix 2D-editor mouse wheel zoom (x11). | Martin Capitanio | |
Fixes #8888 | |||
2017-05-23 | Merge pull request #8884 from karroffel/gdnative-fixes | Thomas Herzog | |
[GDNative] fixed some functions that returned references | |||
2017-05-23 | [GDNative] fixed some functions that returned references | Karroffel | |
Those errors were introduced with #8821 (6fd217d). These functions need to return reference types, otherwise setting values on those containers does not work. | |||
2017-05-23 | Merge pull request #8881 from vnen/uwp-3 | Rémi Verschelde | |
Fix UWP compilation issues | |||
2017-05-23 | Fix UWP compilation issues | George Marques | |
Also fix VS2017 compilation problems. |