summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-12ScriptTextEditor: fix capitalize offsetPoommetee Ketson
2018-03-11EditorNode: fix clicking ok keeps trying to savePoommetee Ketson
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-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-10Fix invalid mix function overloadChaosus
2018-03-10Update Image format enumeration documentationNeil Moore
Provides more information about each image format.
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()
2018-03-08Merge pull request #17341 from poke1024/fix16461Rémi Verschelde
Fix unselectable flipped sprites (fixes 16461)
2018-03-08Merge pull request #17189 from CodeAndWeb/masterRémi Verschelde
Fixes Selection of Sprites using AtlasTexture
2018-03-08Merge pull request #17340 from eska014/gridcontainer-divisionbyzeroRémi Verschelde
Prevent division by zero in GridContainer
2018-03-07Make the shader token names consistent.Saracen
2018-03-07Merge pull request #17343 from eska014/wasm-webgl1Rémi Verschelde
Reinstate WebGL 1.0 (GLES2) driver in HTML5 platform
2018-03-07FIX to broken item select list (zoom and RMB)Ranoller
FIX to #17346. Compiled and tested.
2018-03-07Bring back Vector2.cross()Bernhard Liebl
2018-03-07Reinstate WebGL 1.0 driver in HTML5 platformLeon Krause
2018-03-07Fix unselectable flipped sprites (fixes 16461)poke1024
2018-03-07Prevent division by zero in GridContainerLeon Krause
2018-03-07Merge pull request #17243 from delftswa2018/trailingDotFixHein-Pieter van Braam
Fix being able to create folder name with ending '.' on Windows
2018-03-07Added a check for trailing dot when creating folder.Felix Yang
Merge the trailing dot test into existing test. Removed OS test.
2018-03-06Merge pull request #17318 from robfram/silent-failure-ogg-9793Rémi Verschelde
Fix silent failure of importing OGG Vorbis files
2018-03-06Merge pull request #17317 from eska014/html5-freetype-simdRémi Verschelde
Disable FreeType SIMD in HTML5 builds
2018-03-06Fix silent failure of importing OGG Vorbis filesrobfram
When importing non-valid OGG Vorbis audio files, now the filesystem navigation tree shows the correct sad red-face icon, as it does with non-valid PNG, JPG or WAV files. Fix #9793.
2018-03-06Disable FreeType SIMD in HTML5 buildsLeon Krause
SIMD is currently unsupported in WebAssembly.
2018-03-06Merge pull request #17315 from robfram/fix-git-hook-pre-commit-clang-formatRémi Verschelde
Change shebang of pre-commit-clang-format hook to make it portable
2018-03-06Change shebang of pre-commit-clang-format hook to make it portablerobfram
The default one is "#!/bin/bash", but BSD systems doesn't have bash in that path. For portability reasons, it should be changed to "#!/usr/bin/env bash". More info: https://en.wikipedia.org/wiki/Shebang_%28Unix%29#Portability
2018-03-06Merge pull request #17304 from bruvzg/gl_core_profileRémi Verschelde
[GL] Explicitly set OpenGL 3.3 profile to Core (X11, Windows) and enable GLES2 on Windows.
2018-03-06Explicitly set OpenGL profile to core (X11, Windows).bruvzg
Enable GLES2 on Windows.
2018-03-06Merge pull request #17205 from Ranoller/patch-3Rémi Verschelde
FIX Windows enter/exit mouse notifications
2018-03-05Merge pull request #17247 from poke1024/canvas-select-prioRémi Verschelde
In CanvasItemEditor, prioritize selected items when dragging
2018-03-05Merge pull request #17285 from bruvzg/gles_extension_checksRémi Verschelde
Add OpenGL extension support checks (Debug/FBO) and FBO fallback for GLES2