summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-10-06Merge pull request #11814 from groud/fix_draw_pre_drag_rectAndreas Haas
Fixes the Control pre-drag rect not drawn correctly
2017-10-06Merge pull request #11853 from endragor/long-string-loggingAndreas Haas
Fix logging of long strings via RotatedFileLogger
2017-10-06Merge pull request #11859 from marcelofg55/invalid_customtheme_crashfixAndreas Haas
Fix crash when a custom theme can't be loaded
2017-10-06Merge pull request #11854 from endragor/fix-few-classdb-defsAndreas Haas
Add NIL_IS_VARIANT usage to few definitions
2017-10-06Merge pull request #11687 from BastiaanOlij/arvr_changesAndreas Haas
Made a few tweaks to the ARVR interface
2017-10-06Made a few tweaks to the interfaceBastiaanOlij
2017-10-06Merge pull request #11871 from tagcup/fix_buildRémi Verschelde
Fix mono enabled build
2017-10-05Fix mono enabled builds (broken by 3d87b70).Ferenc Arn
2017-10-05Make sure to obey hidpi to off by default, as present in project settings. ↵Juan Linietsky
Set it to on by default for editor. Many integrated GPUs can't really get enough performance to play games at hidpi, so this should be enabled manually.
2017-10-05Fix crash when a custom theme can't be loadedMarcelo Fernandez
2017-10-05Added the set/get_setting function in Editor/Project settings. Renamed has() ↵Juan Linietsky
to has_setting. Fixes #11844
2017-10-05Merge pull request #11845 from neikeq/music-is-overratedIgnacio Etcheverry
- Fixed uninitialized local - Improved msbuild search on Unix platforms - Add C# script to csproj when attaching it to an object
2017-10-05Merge pull request #11858 from J08nY/feature/gridmap-used-cellsAndreas Haas
Add GridMap::get_used_cells. Fixes #11857.
2017-10-05Add GridMap::get_used_cells. Fixes #11857.J08nY
2017-10-05Add NIL_IS_VARIANT usage to few definitionsRuslan Mustakov
The missing usage flag led to GDNative API descriptions containting arguments with "void" type.
2017-10-05Merge pull request #11840 from djrm/pr_fix_drive_selectionGilles Roudiere
Match file dialog drive with the current folder.
2017-10-05Fix logging of long strings via RotatedFileLoggerRuslan Mustakov
2017-10-05Merge pull request #11828 from Jerome67000/regexmatch_docPoommetee Ketson
[DOCS] Adds RegExMatch doc and fix RegEx typo [ci skip]
2017-10-05Uninitialized local and domain finalize fixesIgnacio Etcheverry
- Make sure to run the GC before and after finalizing the scripts domain.
2017-10-05Add C# script to csproj when attaching it to an objectIgnacio Etcheverry
2017-10-05Add alternative search locations for msbuildIgnacio Etcheverry
2017-10-04Match file dialog drive with the current folder.Daniel J. Ramirez
2017-10-04Merge pull request #11812 from NathanWarden/fix_validate_sslGilles Roudiere
Fixed a bug where ssl would force validation even though you told it not to.
2017-10-04[DOCS] Adds RegExMatch doc and RegEx fix typoJerome67000
2017-10-04Merge pull request #11823 from endragor/virtual-keyboard-heightGilles Roudiere
Allow to obtain virtual keyboard height
2017-10-04Merge pull request #11816 from terahxluna/video_player_set_stream_positionHein-Pieter van Braam
Add function set_stream_position to VideoPlayer. Closes #8727
2017-10-04Restored normal bias as default bias in GIProbeJuan Linietsky
2017-10-04Merge pull request #11825 from hi-ogawa/fix-giprobe-light-visibilityGilles Roudiere
Fix GIProbe light visibility
2017-10-04Allow to obtain virtual keyboard heightRuslan Mustakov
On mobile platforms virtual keyboards take up significant amount of screen space and UI containing a text box may need to be adjusted after the keyboard appears to keep the text box visible to user. This commit adds a way to obtain virtual keyabord height so that controls are aware of how much they need to move.
2017-10-04Fix GIProbe light visibilityHiroshi Ogawa
- Fix https://github.com/godotengine/godot/issues/10535
2017-10-04Merge pull request #11806 from touilleMan/gdnative-version-fieldThomas Herzog
[GDnative] add api version field to godot_gdnative_api_struct
2017-10-04Merge pull request #11802 from mhilbrunner/docstatus-todo-filterJulian Murgia
doc_status.py: Add -t (--todo) option, show only non-empty items
2017-10-04Add function set_stream_position to VideoPlayerTerah
Also add docucmentation for set_stream_position in VideoPlayer
2017-10-04[GDnative] add future-proof next field to godot_gdnative_api_struct (a la ↵Emmanuel Leblond
Vulkan)
2017-10-03Merge pull request #11815 from karroffel/gdnative-s-o-p-wrapperThomas Herzog
[GDNative] added API struct wrapper generator
2017-10-03[GDNative] added API struct wrapper generatorKarroffel
Previously functions of the GDNative API were accessed by letting the loader at load-time resolve the symbols. This causes troubles on Windows (...sigh...), so now the GDNative API isn't exported anymore. This means, that a library that wants to call a GDNative function needs to access it via a struct of pointers that's passed to it at right after the library was loaded. To make the usage easier, those function pointers in the struct can be wrapped in actual function in the global scope. This commit adds a generator for that wrapper code.
2017-10-03Fixes the pre drag rect not drawn correctlyGilles Roudiere
2017-10-03Avoid failed viewport when size is too smal, fixes #9891Juan Linietsky
2017-10-03fixed the OS.has_feature() API, and added support for 32 and 64.Juan Linietsky
2017-10-03doc_status.py: Add -e (--empty) option to hide items with nothing left to domhilbrunner
2017-10-03Fixed a bug where ssl would force validation even though you told it not to.Nathan Warden
2017-10-03Merge pull request #11789 from djrm/pr_visual_improvementsAndreas Haas
Added correct initialization for script editor theme.
2017-10-03Merge pull request #11793 from NathanWarden/updated_os_docNathan Lovato
Updated some documentation for the OS class.
2017-10-03[GDnative] add api version field to godot_gdnative_api_structEmmanuel Leblond
2017-10-03Merge pull request #11790 from tagcup/shader_cleanupJuan Linietsky
Various clean ups and cosmetic changes in scene.glsl.
2017-10-03Various clean ups and cosmetic changes in scene.glsl.Ferenc Arn
Use self-documenting names for variables which are otherwise confusing. Also avoid recalculating certain terms.
2017-10-03Updated some documentation for the OS class.Nathan Warden
2017-10-03Merge pull request #11792 from touilleMan/gdnative-json-apiThomas Herzog
[GDnative] autogenerate gdnative_api_struct.h from a json
2017-10-03Merge pull request #11791 from djrm/pr_update_gitignoreHein-Pieter van Braam
Added logs to .gitignore
2017-10-03Merge pull request #11782 from eska014/persistent-userfs-testHein-Pieter van Braam
Add OS::is_userfs_persistent, allow starting HTML5 platform in private mode