summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-04-23Import 4/1 bit bmp imagesAndrii Doroshenko (Xrayez)
Add some sanity checks according to bmp specification. Read color table and index data within the same scope and then simply extend the color palette. This particular implementation has one limitation: not all 4/1 bit images can be imported as it requires bit unpacking (size dimensions must be a multiple of 8 for 1-bit and 2 (even) for 4-bit images).
2019-04-23Merge pull request #28328 from ↵Rémi Verschelde
godotengine/revert-25543-optimize_bullet_heightfield_raycast2 Revert "Implemented terrain raycast acceleration"
2019-04-23Revert "Implemented terrain raycast acceleration"Rémi Verschelde
2019-04-23Merge pull request #28292 from homer666/merge-from-scene-stuffRémi Verschelde
Minor "Merge From Scene" improvements
2019-04-23Merge pull request #28302 from Daw11/orphan-typeRémi Verschelde
Add missing enum value to Performance::get_monitor_type
2019-04-23Merge pull request #28321 from jbuck3/checkable-property-fixRémi Verschelde
Fix drawing of checkable editor properties
2019-04-23Merge pull request #24269 from xsellier/feature/master-add-sha256Hein-Pieter van Braam
Add SHA256 for PoolByteArray
2019-04-23Merge pull request #24489 from mateusfccp/18264_wrong_animation_errorHein-Pieter van Braam
Make AnimatedSprite.animation complain when invalid animation name
2019-04-23Merge pull request #24547 from Shinryuuji/masterHein-Pieter van Braam
Add support for 8bpp bmp files
2019-04-23Merge pull request #24796 from guilhermefelipecgs/fix_play_pos_smHein-Pieter van Braam
Show play position of sub state machine
2019-04-23Merge pull request #25004 from Faless/enet/proto_optimizeHein-Pieter van Braam
Save 4 bytes in ENet multiplayer protocol.
2019-04-23Merge pull request #25155 from Timofffee/Timofffee-patch-vehicleHein-Pieter van Braam
Added check engine_traction
2019-04-23Merge pull request #25510 from groud/tilemap_editor_enhancementHein-Pieter van Braam
Move some tilemap options to the toolbar
2019-04-23Merge pull request #25543 from Zylann/optimize_bullet_heightfield_raycast2Hein-Pieter van Braam
Implemented terrain raycast acceleration
2019-04-23Merge pull request #25744 from YeldhamDev/enhanced_theme_previewHein-Pieter van Braam
Enhance theme preview
2019-04-23Merge pull request #26064 from JFonS/add_frustum_camera_modeHein-Pieter van Braam
Add FRUSTUM camera mode, allowing tilted frustums
2019-04-23Merge pull request #26961 from ibrahn/fix-x11setcontext-access-freedHein-Pieter van Braam
fixed an access after free in OS_X11::set_context. (long version)
2019-04-23Merge pull request #27208 from Calinou/add-lld-linkerHein-Pieter van Braam
Add support for linking using LLD on X11
2019-04-23Merge pull request #27724 from follower/patch-2Hein-Pieter van Braam
Add example of loading a font from .ttf file
2019-04-23Merge pull request #27730 from ShyRed/fix3dphyscansleepHein-Pieter van Braam
Fix missing re-activation of bullet physics sleep feature
2019-04-23Merge pull request #27868 from marxin/add-more-warningsHein-Pieter van Braam
Add more warnings on top of -Wall and -Wextra.
2019-04-23Merge pull request #27903 from Calinou/richtextlabel-brighten-default-colorHein-Pieter van Braam
Brighten the RichTextLabel color in the default theme
2019-04-23Merge pull request #28064 from DarknessCatt/issue-27077Hein-Pieter van Braam
Moving Polygon2D vertices along axis
2019-04-23Merge pull request #28300 from hpvb/fix-25893Hein-Pieter van Braam
Don't try to statically allocate 2x 8193 pointers
2019-04-23Merge pull request #28316 from qarmin/fix_typo_countHein-Pieter van Braam
Fix typo count_count to count
2019-04-22Fix drawing of checkable editor propertiesJames Buck
- Make text cutoff respect checkbox icon's width - Get checkbox icon from EditorIcons instead of CheckBox
2019-04-23Fix typo count_count to countqarmin
2019-04-22Added bindings for methods related to obtaining base an instance from ↵Juan Linietsky
VisualInstance
2019-04-22Expose visible instance count to multimeshJuan Linietsky
2019-04-22Merge pull request #28178 from dankan1890/tileset_editor_add_1Mariano Javier Suligoy
Tileset-Editor: Added alternative tool for drawing a rectangular shape.
2019-04-22Don't try to statically allocate 2x 8193 pointersHein-Pieter van Braam-Stewart
Maximum stack size is only 8KiB, this will try to allocate 8193 * sizeof(void*) * 2 = 131088 bytes on the stack. This causes a crash in some cases.
2019-04-22Add missing enum value to Performance::get_monitor_typeDaw11
2019-04-22fixed an access after free in OS_X11::set_context.Ibrahn Sahir
Added constructor and assignment operator for CharString from const char* to simplify memory management when working with utf8/ascii strings for APIs taking char*. Reworked OS_X11::set_context to use CharString and avoid some manual memory management.
2019-04-22Merge pull request #26868 from NilsIrl/masterRémi Verschelde
Add Attenuation Model "NO" for AudioStreamPlayer3D
2019-04-22Merge pull request #26787 from ptrojahn/utf8assignRémi Verschelde
Support UTF-8 input action names
2019-04-22Merge pull request #27414 from KoBeWi/drop_the_dirRémi Verschelde
Allow to drop folders onto editor
2019-04-22Merge pull request #27673 from qarmin/small_fixesRémi Verschelde
Small fixes, mostly duplicated code
2019-04-22Merge pull request #27817 from fire/assimp_d3d98aRémi Verschelde
Update Assimp to master at d3d98a7ec0c8d38e1952b46dfe53f7e9233dc92d
2019-04-22Merge pull request #28125 from KoBeWi/code_true_codeRémi Verschelde
Consistently wrap booleans in [code]
2019-04-22Merge pull request #28132 from fire/dont_touch_normalsRémi Verschelde
Assimp: Don't touch normals.
2019-04-22Merge pull request #28140 from Daw11/orphan-nodesRémi Verschelde
Add a monitor for the orphan nodes
2019-04-22Merge pull request #28162 from Jummit/vs-new-nodes-at-cursorRémi Verschelde
Position nodes added from the generic search to the position the cursor was when opening the search
2019-04-22Merge pull request #28166 from KLee1248/first_bugRémi Verschelde
Use SHGetKnownFolderPath instead of SHGetFolderPathW
2019-04-22Merge pull request #28179 from neikeq/welpRémi Verschelde
Use StringBuilder in C# bindings generator
2019-04-22Merge pull request #28234 from Paulb23/connection_info_on_scriptRémi Verschelde
Display connection information in the script editor
2019-04-22Add Attenuation Model "DISABLED" for AudioStreamPlayer3DNils ANDRÉ-CHANG
2019-04-22Merge pull request #28286 from Calinou/fix-configure-snap-spinbox-widthRémi Verschelde
Fix rotation offset/snap fields being cut off in Configure Snap dialog
2019-04-22Merge pull request #28266 from coldrye-collaboration/gh-28241Rémi Verschelde
Fix LineEdit not expanded to text length on undo/redo
2019-04-22Merge pull request #28276 from YeldhamDev/lineedit_offset_limitRémi Verschelde
Fix 'LineEdit' offset limit not accounting for the right/clear icon width
2019-04-22Minor "Merge From Scene" improvementshomer666