Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-25 | Merge pull request #28410 from guilhermefelipecgs/fix_typo | Rémi Verschelde | |
[Tilemap] Fix typo | |||
2019-04-25 | Merge pull request #28377 from YeldhamDev/connection_info_script_changes | Rémi Verschelde | |
Make small changes to the new connection info on script feature | |||
2019-04-25 | Merge pull request #28380 from kiidmale/fix-cpuparticles | Rémi Verschelde | |
Make multimesh invisible initially in CPUParticles | |||
2019-04-25 | Merge pull request #28236 from Calinou/android-real-one-click-deploy | Rémi Verschelde | |
Require only one click to deploy to Android if one device is connected | |||
2019-04-25 | Merge pull request #28411 from Chaosus/fix_vs_crash | Yuri Roubinsky | |
Fix crash regression in visual shader | |||
2019-04-25 | Fix crash regression in visual shader | Chaosus | |
2019-04-24 | [Tilemap] Fix typo | Guilherme Felipe | |
2019-04-25 | Merge pull request #28400 from neikeq/issue-28388 | Ignacio Roldán Etcheverry | |
Fix invalid mono log file name on Windows | |||
2019-04-24 | Merge pull request #28363 from YeldhamDev/themeeditor_namepopup_size_fix | Michael Alexsander Silva Dias | |
Fix "Name" popup's size in theme editor | |||
2019-04-24 | Rename wrong field. | Juan Linietsky | |
2019-04-24 | Remove forgotten strings in configuration files | Juan Linietsky | |
2019-04-24 | Fixes to make exporting more responsive. | Juan Linietsky | |
-Process and drop input in step functions. -Hide editor file dialog right after pressing ok -Use actual editor file dialogs for project export. | |||
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-24 | Merge pull request #28374 from akien-mga/thirdparty-disable-cflags | Rémi Verschelde | |
Also disable C and C++ specific warnings in thirdparty code | |||
2019-04-24 | Merge pull request #28381 from Chaosus/fix_vs_glitch | Yuri Roubinsky | |
Fix connection lines glitch in visual shaders | |||
2019-04-24 | Fix connection lines glitch in visual shaders | Chaosus | |
2019-04-24 | Make multimesh invisible initially in CPUParticles | Daeil Kim | |
Fixes #28252 | |||
2019-04-24 | Merge pull request #28375 from Chaosus/fix_vs_loopback | Yuri Roubinsky | |
Disallow loopback connection in visual shaders | |||
2019-04-24 | Disallow loopback connection in visual scripts and visual shaders | Chaosus | |
2019-04-24 | Make small changes to the new connection info on script feature | Michael Alexsander Silva Dias | |
2019-04-24 | doc: Sync classref with current source | Rémi Verschelde | |
2019-04-24 | Also disable C and C++ specific warnings in thirdparty code | Rémi Verschelde | |
Move the `Append` up to make sure that the keys exist and avoid the need to check `if CPPFLAGS in self`, etc. | |||
2019-04-24 | Merge pull request #28372 from Chaosus/fix_vs_transform_preview2 | Yuri Roubinsky | |
Removes preview from existing transform nodes in visual shader | |||
2019-04-24 | Removes preview from existing transform nodes in visual shader | Chaosus | |
2019-04-23 | Fix "Name" popup's size in theme editor | Michael Alexsander Silva Dias | |
2019-04-23 | Merge pull request #28351 from Paulb23/fix_state_crash | Rémi Verschelde | |
Fix crash when restoring script editor state | |||
2019-04-23 | Merge pull request #28348 from Chaosus/fix_vs_transform_preview | Rémi Verschelde | |
Removed incorrect "Transform" preview from visual shaders | |||
2019-04-23 | Merge pull request #28345 from Chaosus/fix_vs_vector3 | Rémi Verschelde | |
Enlarge vector constant node in visual shaders | |||
2019-04-23 | Merge pull request #28342 from KLee1248/fix_build | Rémi Verschelde | |
Fixes build for Windows cross-compilation | |||
2019-04-23 | Fix crash when restoring script editor state | Paulb23 | |
2019-04-23 | Added inspector plugin documentation. | Juan Linietsky | |
Fixed plugin bindings. | |||
2019-04-23 | Revert 8d3345a, I thought this was non functioning but it is.. | Juan Linietsky | |
2019-04-23 | Removed incorrect "Transform" preview from visual shaders | Chaosus | |
2019-04-23 | Enlarge Vector3 constant node in visual shaders | Chaosus | |
2019-04-23 | Made virtual function begin with _, for consistency. | Juan Linietsky | |
This was not yet used, anyway as no API is bound for this. | |||
2019-04-23 | Fixes build for Windows cross-compilation | Kenneth Lee | |
Fixes #28299 | |||
2019-04-23 | Merge pull request #27781 from reduz/new_android_export | Rémi Verschelde | |
Android now (optionally) builds the template when exporting | |||
2019-04-23 | Merge pull request #28331 from godotengine/revert-26788-master | Rémi Verschelde | |
Revert "RichTextLabel: Adding the ability to change the default cursor" | |||
2019-04-23 | Revert "RichTextLabel: Adding the ability to change the default cursor" | Rémi Verschelde | |
2019-04-23 | Merge pull request #28328 from ↵ | Rémi Verschelde | |
godotengine/revert-25543-optimize_bullet_heightfield_raycast2 Revert "Implemented terrain raycast acceleration" | |||
2019-04-23 | Revert "Implemented terrain raycast acceleration" | Rémi Verschelde | |
2019-04-23 | Merge pull request #28292 from homer666/merge-from-scene-stuff | Rémi Verschelde | |
Minor "Merge From Scene" improvements | |||
2019-04-23 | Merge pull request #28302 from Daw11/orphan-type | Rémi Verschelde | |
Add missing enum value to Performance::get_monitor_type | |||
2019-04-23 | Merge pull request #28321 from jbuck3/checkable-property-fix | Rémi Verschelde | |
Fix drawing of checkable editor properties | |||
2019-04-23 | Merge pull request #24269 from xsellier/feature/master-add-sha256 | Hein-Pieter van Braam | |
Add SHA256 for PoolByteArray | |||
2019-04-23 | Merge pull request #24489 from mateusfccp/18264_wrong_animation_error | Hein-Pieter van Braam | |
Make AnimatedSprite.animation complain when invalid animation name | |||
2019-04-23 | Merge pull request #24547 from Shinryuuji/master | Hein-Pieter van Braam | |
Add support for 8bpp bmp files |