Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-04-25 | Merge pull request #28413 from akien-mga/xatlas-cleanup-thekla | Rémi Verschelde | |
SCons: Clean xatlas SCsub from thekla/poshlib defines | |||
2019-04-25 | Merge pull request #28267 from Xrayez/fix-bmp-indexed-8-4-1 | Rémi Verschelde | |
Load and import 4/1-bit BMP images | |||
2019-04-25 | Merge pull request #28265 from Xrayez/fix-tga-indexed-palette | Max Hilbrunner | |
Fix TGA indexed images loaded with flipped color table | |||
2019-04-25 | SCons: Clean xatlas SCsub from thekla/poshlib defines | Rémi Verschelde | |
Those are not used in xatlas. | |||
2019-04-25 | Merge pull request #28396 from akien-mga/scons-capture-the-flags | Rémi Verschelde | |
SCons: Review uses of CCFLAGS, CXXFLAGS and CPPFLAGS | |||
2019-04-24 | Fix invalid mono log file name on Windows | Ignacio Etcheverry | |
2019-04-24 | SCons: Review uses of CCFLAGS, CXXFLAGS and CPPFLAGS | Ré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-23 | Added inspector plugin documentation. | Juan Linietsky | |
Fixed plugin bindings. | |||
2019-04-23 | Import 4/1 bit bmp images | Andrii 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-23 | Revert "Implemented terrain raycast acceleration" | Rémi Verschelde | |
2019-04-23 | Merge pull request #24547 from Shinryuuji/master | Hein-Pieter van Braam | |
Add support for 8bpp bmp files | |||
2019-04-23 | Merge pull request #25004 from Faless/enet/proto_optimize | Hein-Pieter van Braam | |
Save 4 bytes in ENet multiplayer protocol. | |||
2019-04-23 | Merge pull request #25543 from Zylann/optimize_bullet_heightfield_raycast2 | Hein-Pieter van Braam | |
Implemented terrain raycast acceleration | |||
2019-04-23 | Merge pull request #27730 from ShyRed/fix3dphyscansleep | Hein-Pieter van Braam | |
Fix missing re-activation of bullet physics sleep feature | |||
2019-04-22 | Merge pull request #27673 from qarmin/small_fixes | Rémi Verschelde | |
Small fixes, mostly duplicated code | |||
2019-04-22 | Merge pull request #28125 from KoBeWi/code_true_code | Rémi Verschelde | |
Consistently wrap booleans in [code] | |||
2019-04-22 | Merge pull request #28132 from fire/dont_touch_normals | Rémi Verschelde | |
Assimp: Don't touch normals. | |||
2019-04-22 | Merge pull request #28162 from Jummit/vs-new-nodes-at-cursor | Rémi Verschelde | |
Position nodes added from the generic search to the position the cursor was when opening the search | |||
2019-04-22 | Merge pull request #28179 from neikeq/welp | Rémi Verschelde | |
Use StringBuilder in C# bindings generator | |||
2019-04-21 | Fix TGA indexed images loaded with flipped color table | Andrii Doroshenko (Xrayez) | |
This fixes incorrect color table lookup where red and blue channels were flipped. | |||
2019-04-21 | Merge pull request #27940 from LeonardMeagher2/fix_csgshape_geometryinstance | Rémi Verschelde | |
CSGMesh gets material + CSGShape inherits from GeometryInstance | |||
2019-04-20 | Merge pull request #27554 from volzhs/freetype-2.10.0 | Rémi Verschelde | |
Update freetype to 2.10.0 | |||
2019-04-20 | Merge pull request #27820 from ForLoveOfCats/master | Ignacio Roldán Etcheverry | |
Mono: Convert all items to string before printing | |||
2019-04-19 | Mono: Convert all items to string before printing | ForLoveOfCats | |
2019-04-19 | Merge pull request #28196 from akien-mga/xatlas-cleanup | Rémi Verschelde | |
xatlas: Document provenance, copyright and custom changes | |||
2019-04-19 | Merge pull request #28193 from akien-mga/drop-thekla | Rémi Verschelde | |
Drop unused thekla_atlas dependency | |||
2019-04-19 | Merge pull request #28192 from akien-mga/doc-unused-demos | Rémi Verschelde | |
doc: Drop unused <demos> tag, sync classref | |||
2019-04-19 | xatlas: Revert to unmodified upstream code, add to COPYRIGHT | Ré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-19 | Drop unused thekla_atlas dependency | Ré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-19 | doc: Sync classref with current source | Rémi Verschelde | |
2019-04-19 | doc: Drop unused <demos> tag | Rémi Verschelde | |
2019-04-19 | Use StringBuilder in C# bindings generator | Ignacio Etcheverry | |
- Also fixed generation of empty summary comments when no comment should have been generated. | |||
2019-04-18 | Merge pull request #28161 from neikeq/exception-hook-no-abort | Ignacio Roldán Etcheverry | |
Mono: Use exit(status) instead of abort() in exception hook | |||
2019-04-18 | position nodes from the generic search at the cursor | Jummit | |
2019-04-18 | Mono: Use exit(status) instead of abort() in exception hook | Ignacio Etcheverry | |
2019-04-18 | C#: Add missing ToString() override methods | Ignacio Etcheverry | |
Godot.Object, Array, Dictionary and RID were missing ToString() override methods | |||
2019-04-18 | Merge pull request #28139 from neikeq/mono-log-level-info | Ignacio Roldán Etcheverry | |
Mono: Logging improvements | |||
2019-04-17 | Mono: Logging improvements | Ignacio 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-17 | Assimp: Don't touch normals. | K. S. Ernest (iFire) Lee | |
2019-04-17 | Consistently wrap booleans in [code] | Tomasz Chabora | |
2019-04-16 | Merge pull request #28053 from lupoDharkael/shadowing | Rémi Verschelde | |
GDScript: add variable shadowing warning | |||
2019-04-15 | Merge pull request #26792 from Faless/webrtc_pr | Rémi Verschelde | |
Initial WebRTC support | |||
2019-04-15 | GDScript: add variable shadowing warning | lupoDharkael | |
2019-04-15 | doc: Sync classref with current source | Rémi Verschelde | |
2019-04-13 | Clean up ASSIMP import code. | Juan Linietsky | |
2019-04-12 | Register WebRTCPeerJS and WebRTCPeerGDNative | Fabio Alessandrelli | |
2019-04-12 | Add WebRTC GDNative interface | Fabio Alessandrelli | |
2019-04-12 | Add WebRTC JS implementation | Fabio Alessandrelli | |
2019-04-12 | Implement WebRTCPeer custom instance class | Fabio Alessandrelli | |
2019-04-12 | Merge pull request #27950 from Nonnu42/contrib | Ignacio Roldán Etcheverry | |
Fixes #17233 allowing C# to override _GetPropertyList |