summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-03-13Merge pull request #17383 from poke1024/colorpicker-tweaksRémi Verschelde
Better tab support for color picker
2018-03-13Merge pull request #17390 from poke1024/fix-anim-text-overlapRémi Verschelde
Fixes overlapping text labels in animation editor timeline
2018-03-13Merge pull request #17404 from poke1024/fix-anim-player-panRémi Verschelde
Fix wrong pan direction in animation player ui
2018-03-13Merge pull request #17406 from poke1024/fix-anim-key-uiRémi Verschelde
Fix broken hover/select coloring of keys in animation editor
2018-03-13Merge pull request #17413 from ShyRed/previewfixRémi Verschelde
Update preview on filesystem change
2018-03-13Merge pull request #17422 from robfram/fix-radial-textureprogressRémi Verschelde
Implement line clipping for `TextureProgress` to avoid bad rendering
2018-03-13Merge pull request #17435 from poke1024/output-error-iconRémi Verschelde
Show error icon at "Output" in case of errors
2018-03-13Merge pull request #17441 from poke1024/fix-autoload-column-widthRémi Verschelde
Fix column width on AutoLoad table on hidpi displays
2018-03-13Merge pull request #17454 from jvdnbus/hdr-importRémi Verschelde
Fixes importing hdr files with extra header info
2018-03-13Merge pull request #17319 from eska014/polyclipper-toolsonlyRémi Verschelde
Build polygon clipper only in tools builds
2018-03-13Merge pull request #17482 from yleduc/fix_ios_build_es2Rémi Verschelde
fix iOS build - error due to GLES2 missing include
2018-03-13fix iOS build - error due to GLES2 missing include (with the advice from ↵Yannick Le Duc
bruvzg[m] on irc)
2018-03-13Merge pull request #17410 from groud/fix_grid_containerRémi Verschelde
Fixes infinite loop in GridContainer
2018-03-13Merge pull request #17191 from garyo/fix_grid_contRémi Verschelde
Fix infinite loop in GridContainer layout
2018-03-13Merge pull request #17455 from Noshyaar/capitalizeRémi Verschelde
ScriptTextEditor: fix capitalize offset
2018-03-13Merge pull request #17442 from Noshyaar/esrRémi Verschelde
EditorNode: fix clicking ok keeps trying to save
2018-03-13Merge pull request #17432 from ShyRed/tilemapupdateRémi Verschelde
Update TileMap when its TileSet changes
2018-03-13Merge pull request #17426 from AlexHolly/expose-itemlist-is_anything_selectedRémi Verschelde
expose Itemlist.is_anything_selected
2018-03-13Merge pull request #17416 from viktor-ferenczi/issue-17414Rémi Verschelde
Avoid confusing traceback on attempting build without platform option
2018-03-13Merge pull request #17402 from Chaosus/fixmixRémi Verschelde
Fix invalid mix function overload
2018-03-13Merge pull request #17399 from Dar13/update_image_format_docsRémi Verschelde
[DOCS] Update Image format enumeration documentation
2018-03-13Merge pull request #17474 from robfram/fix-input-map-spaces-17322Rémi Verschelde
Fix non working action names containing whitespaces
2018-03-13Merge pull request #17473 from Rubonnek/gles3-rasterizer-leakRémi Verschelde
Fixed several leaks
2018-03-13Fixed several leaks in VisualServerScene, RasterizerSceneGLES3 and ↵Wilson E. Alvarez
RasterizerGLES3
2018-03-12Fix non working action names containing whitespacesrobfram
Now the action name is quoted if it contains spaces. Also, quotation mark (") is added to the forbidden character list for action names, as it was also a bug. Fix #17322
2018-03-12Various ui tweaks for color pickerBernhard Liebl
2018-03-12ScriptTextEditor: fix capitalize offsetPoommetee Ketson
2018-03-11Fixes importing hdr files with extra header infoJorn Van denbussche
2018-03-11EditorNode: fix clicking ok keeps trying to savePoommetee Ketson
2018-03-11Fix column width on AutoLoad table on hidpi displaysBernhard Liebl
2018-03-11Show error icon at "Output" in case of errorsBernhard Liebl
2018-03-11Update TileMap when its TileSet changesShyRed
Make TileMap monitor its TileSet for changes and emit a signal when the TileSet changes. This makes the editor update and show the updated version of the TileSet.
2018-03-11expose Itemlist.is_anything_selectedAlexander Holland
2018-03-10Implement line clipping for `TextureProgress` to avoid bad rendering due to ↵robfram
imprecise UV mapping Original code used a quick aproximation for simulating the correspondent texel in the `TextureProgress` texture as radial progress indicator. This lead to visualization errors. Changed it for a Liang-Barsky line clipping algorithm stripped to its minimum for this specific use case. Fix #17364.
2018-03-10Fix infinite loop in GridContainer layoutGary Oberbrunner
I had a grid container and tried to set rect.min_height larger in the editor; that caused an infinite loop in GridContainer::_notification at line 118. The reason is max_index was being set to the *height* of the row, not the *index* of the row. So later when it tried to erase that row and try again, there was nothing to erase. I applied the same fix to the width code.
2018-03-10Merge pull request #17417 from ShyRed/texturechangedupdateJuan Linietsky
Update Sprite when its Texture changes
2018-03-10Update Sprite when Texture changesShyRed
Make Sprite monitor its Texture for changes and trigger an update when the sprite changes.
2018-03-10Avoid confusing traceback on attempting build without platform optionViktor Ferenczi
A traceback is printed on invoking scons without the compulsory platform option. This is confusing, since the problem is not in the code. Fix is to explicitly exit from the build right after printing the error message, so the missing env variable cannot cause the traceback later. Fixes #17414
2018-03-10Update preview on filesystem changeShyRed
Check and recreate a file's preview, if it has changes to it in the filesystem.
2018-03-10Fixes infinite loop in GridContainerGilles Roudiere
2018-03-10Fix broken hover/select coloring of keys in animation editorBernhard Liebl
2018-03-10Fix wrong pan direction in animation player uiBernhard Liebl
2018-03-10Fix invalid mix function overloadChaosus
2018-03-10Update Image format enumeration documentationNeil Moore
Provides more information about each image format.
2018-03-09Fix overlapping timeline text in AnimationEditorBernhard Liebl
2018-03-09Merge pull request #17378 from ShyRed/webmRémi Verschelde
Update libwebm
2018-03-09Update libwebmShyRed
Update of libwebm. Up-to-date version of libwebm contains several bugfixes that allow playback of files that would crash Godot otherwise.
2018-03-09Merge pull request #17347 from Ranoller/patch-1Rémi Verschelde
FIX to broken item select list (zoom and RMB)
2018-03-09Merge pull request #17354 from SaracenOne/shader_token_name_fixRémi Verschelde
Make the shader token names consistent.
2018-03-08Merge pull request #16485 from poke1024/vector2-crossRémi Verschelde
Bring back Vector2.cross()