summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2019-04-25Merge pull request #28413 from akien-mga/xatlas-cleanup-theklaRémi Verschelde
SCons: Clean xatlas SCsub from thekla/poshlib defines
2019-04-25Merge pull request #28267 from Xrayez/fix-bmp-indexed-8-4-1Rémi Verschelde
Load and import 4/1-bit BMP images
2019-04-25Merge pull request #28265 from Xrayez/fix-tga-indexed-paletteMax Hilbrunner
Fix TGA indexed images loaded with flipped color table
2019-04-25SCons: Clean xatlas SCsub from thekla/poshlib definesRémi Verschelde
Those are not used in xatlas.
2019-04-25Merge pull request #28396 from akien-mga/scons-capture-the-flagsRémi Verschelde
SCons: Review uses of CCFLAGS, CXXFLAGS and CPPFLAGS
2019-04-24Fix invalid mono log file name on WindowsIgnacio Etcheverry
2019-04-24SCons: Review uses of CCFLAGS, CXXFLAGS and CPPFLAGSRémi Verschelde
Many contributors (me included) did not fully understand what CCFLAGS, CXXFLAGS and CPPFLAGS refer to exactly, and were thus not using them in the way they are intended to be. As per the SCons manual: https://www.scons.org/doc/HTML/scons-user/apa.html - CCFLAGS: General options that are passed to the C and C++ compilers. - CFLAGS: General options that are passed to the C compiler (C only; not C++). - CXXFLAGS: General options that are passed to the C++ compiler. By default, this includes the value of $CCFLAGS, so that setting $CCFLAGS affects both C and C++ compilation. - CPPFLAGS: User-specified C preprocessor options. These will be included in any command that uses the C preprocessor, including not just compilation of C and C++ source files [...], but also [...] Fortran [...] and [...] assembly language source file[s]. TL;DR: Compiler options go to CCFLAGS, unless they must be restricted to either C (CFLAGS) or C++ (CXXFLAGS). Preprocessor defines go to CPPFLAGS.
2019-04-23Added inspector plugin documentation.Juan Linietsky
Fixed plugin bindings.
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-23Revert "Implemented terrain raycast acceleration"Rémi Verschelde
2019-04-23Merge pull request #24547 from Shinryuuji/masterHein-Pieter van Braam
Add support for 8bpp bmp files
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 #25543 from Zylann/optimize_bullet_heightfield_raycast2Hein-Pieter van Braam
Implemented terrain raycast acceleration
2019-04-23Merge pull request #27730 from ShyRed/fix3dphyscansleepHein-Pieter van Braam
Fix missing re-activation of bullet physics sleep feature
2019-04-22Merge pull request #27673 from qarmin/small_fixesRémi Verschelde
Small fixes, mostly duplicated code
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 #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 #28179 from neikeq/welpRémi Verschelde
Use StringBuilder in C# bindings generator
2019-04-21Fix TGA indexed images loaded with flipped color tableAndrii Doroshenko (Xrayez)
This fixes incorrect color table lookup where red and blue channels were flipped.
2019-04-21Merge pull request #27940 from LeonardMeagher2/fix_csgshape_geometryinstanceRémi Verschelde
CSGMesh gets material + CSGShape inherits from GeometryInstance
2019-04-20Merge pull request #27554 from volzhs/freetype-2.10.0Rémi Verschelde
Update freetype to 2.10.0
2019-04-20Merge pull request #27820 from ForLoveOfCats/masterIgnacio Roldán Etcheverry
Mono: Convert all items to string before printing
2019-04-19Mono: Convert all items to string before printingForLoveOfCats
2019-04-19Merge pull request #28196 from akien-mga/xatlas-cleanupRémi Verschelde
xatlas: Document provenance, copyright and custom changes
2019-04-19Merge pull request #28193 from akien-mga/drop-theklaRémi Verschelde
Drop unused thekla_atlas dependency
2019-04-19Merge pull request #28192 from akien-mga/doc-unused-demosRémi Verschelde
doc: Drop unused <demos> tag, sync classref
2019-04-19xatlas: Revert to unmodified upstream code, add to COPYRIGHTRémi Verschelde
Imported by @reduz from https://github.com/jpcy/xatlas/commit/b8ec29b6b62fb808823e042df5f0f800c07f2e8b Custom changes will be remade properly in the next commit.
2019-04-19Drop unused thekla_atlas dependencyRémi Verschelde
Since f12cb82 @reduz dropped the use of the thirdparty thekla_atlas library, which is replaced by xatlas. Fixes #28180. Fixes #28182.
2019-04-19doc: Sync classref with current sourceRémi Verschelde
2019-04-19doc: Drop unused <demos> tagRémi Verschelde
2019-04-19Use StringBuilder in C# bindings generatorIgnacio Etcheverry
- Also fixed generation of empty summary comments when no comment should have been generated.
2019-04-18Merge pull request #28161 from neikeq/exception-hook-no-abortIgnacio Roldán Etcheverry
Mono: Use exit(status) instead of abort() in exception hook
2019-04-18position nodes from the generic search at the cursorJummit
2019-04-18Mono: Use exit(status) instead of abort() in exception hookIgnacio Etcheverry
2019-04-18C#: Add missing ToString() override methodsIgnacio Etcheverry
Godot.Object, Array, Dictionary and RID were missing ToString() override methods
2019-04-18Merge pull request #28139 from neikeq/mono-log-level-infoIgnacio Roldán Etcheverry
Mono: Logging improvements
2019-04-17Mono: Logging improvementsIgnacio Etcheverry
- The default log level in debug builds is now 'info' instead of 'debug'. - Add option to specify a different log level with the 'GODOT_MONO_LOG_LEVEL' environment variable. - The name of log files is now a readable date and time. - Always print the log file path (previously it was printed only it in verbose mode).
2019-04-17Assimp: Don't touch normals.K. S. Ernest (iFire) Lee
2019-04-17Consistently wrap booleans in [code]Tomasz Chabora
2019-04-16Merge pull request #28053 from lupoDharkael/shadowingRémi Verschelde
GDScript: add variable shadowing warning
2019-04-15Merge pull request #26792 from Faless/webrtc_prRémi Verschelde
Initial WebRTC support
2019-04-15GDScript: add variable shadowing warninglupoDharkael
2019-04-15doc: Sync classref with current sourceRémi Verschelde
2019-04-13Clean up ASSIMP import code.Juan Linietsky
2019-04-12Register WebRTCPeerJS and WebRTCPeerGDNativeFabio Alessandrelli
2019-04-12Add WebRTC GDNative interfaceFabio Alessandrelli
2019-04-12Add WebRTC JS implementationFabio Alessandrelli
2019-04-12Implement WebRTCPeer custom instance classFabio Alessandrelli
2019-04-12Merge pull request #27950 from Nonnu42/contribIgnacio Roldán Etcheverry
Fixes #17233 allowing C# to override _GetPropertyList