summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-01-15Display path to preloaded res + button to open itJulian Murgia
2018-01-12Renamed tree_exited to tree_exiting. tree_exited is now used for actual out ↵Juan Linietsky
of tree notification. Updated doc accordingly.
2018-01-12Fix malformed doc after #15611Rémi Verschelde
2018-01-12Merge pull request #15611 from bojidar-bg/x-bind-more-propertiesRémi Verschelde
Bind many more properties to scripts
2018-01-12Merge pull request #15613 from eska014/html5-feature-tagsRémi Verschelde
Fix HTML5 feature tags
2018-01-12-Remove color operator clamping, which is unnecesary. Fixes #15184, fixes ↵Juan Linietsky
#14686. -Refresh progress bar less often, makes baking, exporting, etc. faster.
2018-01-11Restored multiplication by textureJuan Linietsky
2018-01-12Fix HTML5 feature tagsLeon Krause
'HTML5' is the platform tag, the 'JavaScript' tag indicates availability of the JavaScript.eval singleton. Also report texture compression support.
2018-01-11Removed extra multiplication in bakerJuan Linietsky
2018-01-12Update docsBojidar Marinov
[ci skip]
2018-01-12Bind many more properties to scriptsBojidar Marinov
Notable potentially breaking changes: - PROPERTY_USAGE_NOEDITOR is now PROPERTY_USAGE_STORAGE | PROPERTY_USAGE_NETWORK, without PROPERTY_USAGE_INTERNAL - Some properties were renamed, and sometimes even shadowed by new ones - New getter methods (some virtual) were added
2018-01-11Merge pull request #15610 from groud/fix_node_resize_setting_anchorsRémi Verschelde
Fixes nodes being resized or moved when changing an anchor
2018-01-11Fixes nodes being resized or moved when changing an anchorGilles Roudiere
2018-01-11Properly fix blend equations for both transparent and non transparent ↵Juan Linietsky
framebuffers. Closes #15047
2018-01-11Merge pull request #15609 from groud/script_button_updateRémi Verschelde
Fixes add script button update
2018-01-11Fixes add script button updateGilles Roudiere
2018-01-11Merge pull request #15528 from AndreaCatania/p1Rémi Verschelde
Fixed viewport node error on editor
2018-01-11Merge pull request #15531 from AndreaCatania/p2Juan Linietsky
Fixed crash on duplicate GIProbe baking
2018-01-12Merge pull request #15605 from volzhs/fix-android-build-27volzhs
Fix Android build error
2018-01-12Fix Android build errorvolzhs
Fix #15603 Fix #15513
2018-01-11solved particle memory leak, fixes #15591Juan Linietsky
2018-01-11Forced no duplication of animation dataAndreaCatania
2018-01-11Fixed crash on duplicate GIProbe bakingAndreaCatania
2018-01-11Fixed resource setup handlingAndreaCatania
2018-01-11Merge pull request #15571 from RandomShaper/fix-crash-save-branchRémi Verschelde
Fix crash on save-branch-as-scene
2018-01-11Merge pull request #15580 from karroffel/gdnative-api-fixesRémi Verschelde
[GDNative] updates to string API and const fixes
2018-01-11Merge pull request #15589 from endragor/defer-audio-server-destrRémi Verschelde
Destroy AudioServer after other non-core types are unregistered
2018-01-11Merge pull request #15594 from AndreaCatania/p4Rémi Verschelde
Fixed graphic artifact caused by anisotropic filter
2018-01-11Merge pull request #15595 from endragor/fix-light-data-typeRémi Verschelde
Fix registered light_data property type name
2018-01-11Update documentation to clarify that list of overlaps is not updated ↵Juan Linietsky
immediately.
2018-01-11Merge pull request #15596 from endragor/cache-no-errorRémi Verschelde
Dont print error when loading resource from cache
2018-01-11Dont print error when loading resource from cacheRuslan Mustakov
2018-01-11Fix registered light_data property type nameRuslan Mustakov
2018-01-11Fixed graphic artifact caused by anisotropic filterAndreaCatania
2018-01-11Merge pull request #15579 from damarindra/add-receptor-tilesetRémi Verschelde
fix updating tileset list when assign texture and set autotile true
2018-01-11Merge pull request #15572 from poke1024/fix15366Rémi Verschelde
Fixes snap button getting out of sync (issue 15366)
2018-01-11Destroy AudioServer after other non-core types are unregisteredRuslan Mustakov
This is important for some GDNative bindings and probably for Mono. They may keep references to audio objects which are freed when they are unregistered. If AudioServer is already deleted at that point, it causes segfaults.
2018-01-11Merge pull request #15568 from poke1024/fix15418Rémi Verschelde
Fixes empty line selection when scrolling
2018-01-11Fixes snap button getting out of sync (issue 15366)poke1024
2018-01-11Fixes empty line selection when scrollingpoke1024
2018-01-11[GDNative] updates to string API and const fixeskarroffel
2018-01-11fix updating tileset list when assign texture and set autotile truedamarindra
2018-01-10sorry, accidentally pressed delete before commiting.Juan Linietsky
2018-01-10Added middle button doubleclick, fixes #15567Juan Linietsky
2018-01-10Fix crash on save-branch-as-scenePedro J. Estébanez
2018-01-10Merge pull request #15537 from ↵Rémi Verschelde
PJB3005/18-01-09-fix-color-string-constructor-mono Fixes Mono color creation from string being 0-255 instead of 0-1.
2018-01-10Merge pull request #15552 from bruvzg/osx_ime_fixRémi Verschelde
[macOS] Fix IME producing multiple events per key press.
2018-01-10Fixes Mono color creation from string.Pieter-Jan Briers
Fixes #15468 Also improves the error messages if the string isn't hex, because saying that the color value is negative is just a side effect of the implementation and tells you nothing.
2018-01-10Merge pull request #15555 from BastiaanOlij/clamp_blendsRémi Verschelde
Clamp blend to fix screen space reflections
2018-01-10Clamp blend to fix screen space reflectionsBastiaan Olij