| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2016-06-26 | remove the warning of instances in use at exit | Juan Linietsky | 2 | -2/+2 | |
| 2016-06-26 | Added an option to ParallaxLayer to add an extra scroll offset, helps if you ↵ | Juan Linietsky | 4 | -7/+50 | |
| want to make clouds to move by themselves and animate that, for example. | |||||
| 2016-06-26 | Fix error reporting when a scene is not imported properly, closes #3968 | Juan Linietsky | 3 | -12/+18 | |
| 2016-06-26 | Fix cscript module syntax errors for MSVC compiler | George Marques | 1 | -14/+14 | |
| 2016-06-26 | Revert "Fix issue when switching between FileSystem and other editor docks" | Juan Linietsky | 1 | -0/+1 | |
| 2016-06-26 | Revert "Improve parallax mirroring algorithm" | Rémi Verschelde | 1 | -4/+14 | |
| 2016-06-26 | Ability to set draw transform as a matrix, closes #5428 | Juan Linietsky | 2 | -0/+13 | |
| 2016-06-26 | Cleaner way to enable ptrcall | Juan Linietsky | 2 | -1/+5 | |
| 2016-06-26 | missing files | Juan Linietsky | 4 | -0/+83 | |
| 2016-06-26 | -Fix crashes with thread_exit() | Juan Linietsky | 5 | -1/+586 | |
| -Added draft of C script API (still disabled and unused) | |||||
| 2016-06-25 | Fix issue when switching between FileSystem and other docks. #5384 | samuel.grigolato | 1 | -1/+0 | |
| 2016-06-25 | try to fix windows build | Juan Linietsky | 2 | -1/+2 | |
| 2016-06-25 | Add *Array.invert() documentation | George Marques | 1 | -0/+35 | |
| 2016-06-25 | Expose *Array.invert() to script | George Marques | 1 | -0/+14 | |
| Properly solve #4601. | |||||
| 2016-06-25 | Added function to notify ScriptLanguage when a thread is created/freed, ↵ | Juan Linietsky | 7 | -5/+49 | |
| allows scripts to allocate a stack there via TLS | |||||
| 2016-06-25 | Gradle: remove trailing spaces | Rémi Verschelde | 1 | -7/+7 | |
| 2016-06-25 | Changes X11 res_name to "Godot_Engine" | paper-pauper | 1 | -1/+1 | |
| Add additional/alternative WM_CLASS; only affects the game window, avoids redundancy and allows finer control in WMs (#5265) | |||||
| 2016-06-24 | Configurable shortcuts for tabs switching | Daniel J. Ramirez | 1 | -12/+16 | |
| 2016-06-24 | Added high resolution icons for the Gizmos, fixes #1638 | Daniel J. Ramirez | 37 | -158/+141 | |
| 2016-06-24 | Fix Android sensors polling rate on resume | George Marques | 1 | -2/+2 | |
| Fix #5306 | |||||
| 2016-06-24 | changed way to return reference | Juan Linietsky | 1 | -2/+2 | |
| 2016-06-25 | Fix string array parameter check with jni | volzhs | 2 | -4/+4 | |
| 2016-06-24 | Improve parallax mirroring algorithm | Pedro J. Estébanez | 1 | -14/+4 | |
| Replaces the iterative approach currently used by the standard fmod() function. Also fixes infinite looping that happens when the mirroring value is negative. | |||||
| 2016-06-25 | Remove duplicated aidl for android | volzhs | 1 | -144/+0 | |
| Tested IAP function on device. | |||||
| 2016-06-24 | Add "bool" to GDScript reserverd keywords | Andreas Haas | 1 | -0/+1 | |
| Noticed that "bool" wasn't highlighted when used like `export(bool) var is_xy = false` | |||||
| 2016-06-24 | Fix bug in String==StrRange comparison | George Marques | 1 | -5/+2 | |
| It was comparing the StrRange with itself, always return true if both were the same length. Fix #3843 | |||||
| 2016-06-24 | Exposed code completion colors to the text edit theme | Paulb23 | 1 | -0/+3 | |
| 2016-06-24 | Properly report a valid error instead of reporting as a bug, closes #3841 | Juan Linietsky | 1 | -2/+2 | |
| 2016-06-24 | Fix weird deselection behaviour with text field | Ignacio Etcheverry | 2 | -0/+15 | |
| - TextEdit will now deselect if Ctrl+Left/Right is pressed - TextEdit and LineEdit no longer deselect text when Alt is pressed (except with Apple style keys) | |||||
| 2016-06-24 | Fix network IP setting change | volzhs | 1 | -1/+1 | |
| Fix #5368 | |||||
| 2016-06-23 | Make button aware of it being dragged and reset state, closes #4178 | Juan Linietsky | 2 | -1/+10 | |
| 2016-06-23 | Add docs for String and CanvasItem | George Marques | 1 | -20/+58 | |
| 2016-06-23 | Rename CanvasItem.edit_get() to edit_get_state() | George Marques | 1 | -1/+1 | |
| This makes more sense of what it does and correlates to edit_set_state() | |||||
| 2016-06-23 | Fix issue saving flags (size fill expand), fixes #4176 | Juan Linietsky | 1 | -2/+2 | |
| 2016-06-23 | Add sha256_buffer() function to String | George Marques | 3 | -0/+20 | |
| 2016-06-23 | png: Do not output warnings as errors | Rémi Verschelde | 1 | -1/+1 | |
| 2016-06-23 | Fix typo to PTRCALL_ENABLED from previous commit | Rémi Verschelde | 1 | -15/+8 | |
| And boo @reduz, those trailing spaces :p | |||||
| 2016-06-23 | added "arch" parameter, made iphone use it to build isim | Ariel Manzur | 2 | -6/+17 | |
| 2016-06-23 | iOS simulator: merge into iphone detect.py | Rémi Verschelde | 3 | -155/+31 | |
| Fixes #4489 | |||||
| 2016-06-22 | Improved binding system (ObjectTypeDB::bind_method) to be friendlier to ↵ | Juan Linietsky | 22 | -23/+517 | |
| statically typed languages, should help in the Mono integration. Disabled by default. | |||||
| 2016-06-23 | Make editor compatible with Windows high contrast themes | Pedro J. Estébanez | 2 | -0/+27 | |
| By providing a manifest specifying the targeted Windows versions (as per https://msdn.microsoft.com/en-us/library/windows/desktop/hh404233(v=vs.85).aspx#_______supporting_high_contrast_themes_in_windows_8_and_later) now the Godot editor renders normally under a high contrast theme on Windows, instead of staying white/black. | |||||
| 2016-06-22 | Fixed iCCp chunk in pngs | J08nY | 151 | -105/+105 | |
| neccesary for libpng 1.6.27 to work silently | |||||
| 2016-06-22 | libpng: New version 1.6.27 | J08nY | 26 | -8469/+15338 | |
| Warning: libpng 1.6 is strict about iCCp chunks being incorrect, solution is to fix the profile. On *nix ImageMagicks "convert" works on windows optiPNG. | |||||
| 2016-06-22 | Fixed save as not working with scripts | Paulb23 | 1 | -0/+1 | |
| 2016-06-22 | Added alert() functionality for OS X | Keyaku | 2 | -0/+18 | |
| 2016-06-22 | fix android resource locale | volzhs | 2 | -0/+0 | |
| 2016-06-22 | Added setting to toggle line edit caret blink | Paulb23 | 2 | -1/+26 | |
| 2016-06-22 | Line edit caret no longer draws on focus loss | Paulb23 | 2 | -0/+20 | |
| 2016-06-22 | Added caret blink documentation | Paulb23 | 1 | -0/+28 | |
| 2016-06-22 | Added caret blink to line edit | Paulb23 | 2 | -5/+73 | |
