Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-03-13 | Merge pull request #17383 from poke1024/colorpicker-tweaks | Rémi Verschelde | |
Better tab support for color picker | |||
2018-03-13 | Merge pull request #17390 from poke1024/fix-anim-text-overlap | Rémi Verschelde | |
Fixes overlapping text labels in animation editor timeline | |||
2018-03-13 | Merge pull request #17404 from poke1024/fix-anim-player-pan | Rémi Verschelde | |
Fix wrong pan direction in animation player ui | |||
2018-03-13 | Merge pull request #17406 from poke1024/fix-anim-key-ui | Rémi Verschelde | |
Fix broken hover/select coloring of keys in animation editor | |||
2018-03-13 | Merge pull request #17413 from ShyRed/previewfix | Rémi Verschelde | |
Update preview on filesystem change | |||
2018-03-13 | Merge pull request #17422 from robfram/fix-radial-textureprogress | Rémi Verschelde | |
Implement line clipping for `TextureProgress` to avoid bad rendering | |||
2018-03-13 | Merge pull request #17435 from poke1024/output-error-icon | Rémi Verschelde | |
Show error icon at "Output" in case of errors | |||
2018-03-13 | Merge pull request #17441 from poke1024/fix-autoload-column-width | Rémi Verschelde | |
Fix column width on AutoLoad table on hidpi displays | |||
2018-03-13 | Merge pull request #17454 from jvdnbus/hdr-import | Rémi Verschelde | |
Fixes importing hdr files with extra header info | |||
2018-03-13 | Merge pull request #17319 from eska014/polyclipper-toolsonly | Rémi Verschelde | |
Build polygon clipper only in tools builds | |||
2018-03-13 | Merge pull request #17482 from yleduc/fix_ios_build_es2 | Rémi Verschelde | |
fix iOS build - error due to GLES2 missing include | |||
2018-03-13 | fix iOS build - error due to GLES2 missing include (with the advice from ↵ | Yannick Le Duc | |
bruvzg[m] on irc) | |||
2018-03-13 | Merge pull request #17410 from groud/fix_grid_container | Rémi Verschelde | |
Fixes infinite loop in GridContainer | |||
2018-03-13 | Merge pull request #17191 from garyo/fix_grid_cont | Rémi Verschelde | |
Fix infinite loop in GridContainer layout | |||
2018-03-13 | Merge pull request #17455 from Noshyaar/capitalize | Rémi Verschelde | |
ScriptTextEditor: fix capitalize offset | |||
2018-03-13 | Merge pull request #17442 from Noshyaar/esr | Rémi Verschelde | |
EditorNode: fix clicking ok keeps trying to save | |||
2018-03-13 | Merge pull request #17432 from ShyRed/tilemapupdate | Rémi Verschelde | |
Update TileMap when its TileSet changes | |||
2018-03-13 | Merge pull request #17426 from AlexHolly/expose-itemlist-is_anything_selected | Rémi Verschelde | |
expose Itemlist.is_anything_selected | |||
2018-03-13 | Merge pull request #17416 from viktor-ferenczi/issue-17414 | Rémi Verschelde | |
Avoid confusing traceback on attempting build without platform option | |||
2018-03-13 | Merge pull request #17402 from Chaosus/fixmix | Rémi Verschelde | |
Fix invalid mix function overload | |||
2018-03-13 | Merge pull request #17399 from Dar13/update_image_format_docs | Rémi Verschelde | |
[DOCS] Update Image format enumeration documentation | |||
2018-03-13 | Merge pull request #17474 from robfram/fix-input-map-spaces-17322 | Rémi Verschelde | |
Fix non working action names containing whitespaces | |||
2018-03-13 | Merge pull request #17473 from Rubonnek/gles3-rasterizer-leak | Rémi Verschelde | |
Fixed several leaks | |||
2018-03-13 | Fixed several leaks in VisualServerScene, RasterizerSceneGLES3 and ↵ | Wilson E. Alvarez | |
RasterizerGLES3 | |||
2018-03-12 | Fix non working action names containing whitespaces | robfram | |
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-12 | Various ui tweaks for color picker | Bernhard Liebl | |
2018-03-12 | ScriptTextEditor: fix capitalize offset | Poommetee Ketson | |
2018-03-11 | Fixes importing hdr files with extra header info | Jorn Van denbussche | |
2018-03-11 | EditorNode: fix clicking ok keeps trying to save | Poommetee Ketson | |
2018-03-11 | Fix column width on AutoLoad table on hidpi displays | Bernhard Liebl | |
2018-03-11 | Show error icon at "Output" in case of errors | Bernhard Liebl | |
2018-03-11 | Update TileMap when its TileSet changes | ShyRed | |
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-11 | expose Itemlist.is_anything_selected | Alexander Holland | |
2018-03-10 | Implement 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-10 | Fix infinite loop in GridContainer layout | Gary 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-10 | Merge pull request #17417 from ShyRed/texturechangedupdate | Juan Linietsky | |
Update Sprite when its Texture changes | |||
2018-03-10 | Update Sprite when Texture changes | ShyRed | |
Make Sprite monitor its Texture for changes and trigger an update when the sprite changes. | |||
2018-03-10 | Avoid confusing traceback on attempting build without platform option | Viktor 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-10 | Update preview on filesystem change | ShyRed | |
Check and recreate a file's preview, if it has changes to it in the filesystem. | |||
2018-03-10 | Fixes infinite loop in GridContainer | Gilles Roudiere | |
2018-03-10 | Fix broken hover/select coloring of keys in animation editor | Bernhard Liebl | |
2018-03-10 | Fix wrong pan direction in animation player ui | Bernhard Liebl | |
2018-03-10 | Fix invalid mix function overload | Chaosus | |
2018-03-10 | Update Image format enumeration documentation | Neil Moore | |
Provides more information about each image format. | |||
2018-03-09 | Fix overlapping timeline text in AnimationEditor | Bernhard Liebl | |
2018-03-09 | Merge pull request #17378 from ShyRed/webm | Rémi Verschelde | |
Update libwebm | |||
2018-03-09 | Update libwebm | ShyRed | |
Update of libwebm. Up-to-date version of libwebm contains several bugfixes that allow playback of files that would crash Godot otherwise. | |||
2018-03-09 | Merge pull request #17347 from Ranoller/patch-1 | Rémi Verschelde | |
FIX to broken item select list (zoom and RMB) | |||
2018-03-09 | Merge pull request #17354 from SaracenOne/shader_token_name_fix | Rémi Verschelde | |
Make the shader token names consistent. | |||
2018-03-08 | Merge pull request #16485 from poke1024/vector2-cross | Rémi Verschelde | |
Bring back Vector2.cross() |