Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-12-20 | i18n: Sync translation templates with current source | Rémi Verschelde | |
2017-12-20 | i18n: Sync translations with Weblate | Rémi Verschelde | |
Adds Icelandic and Tamil. | |||
2017-12-20 | Merge pull request #14823 from willnationsdev/get-base-script | Rémi Verschelde | |
Add Script.get_base_script()/get_instance_base_type() to API | |||
2017-12-20 | Merge pull request #14860 from chongdashu/fix-12946-crash-editor-save-exit | Rémi Verschelde | |
Fix editor crash on "save and exit" bug | |||
2017-12-20 | Fix gridmap disappearing after editing after bake, closes #14868 | Juan Linietsky | |
2017-12-20 | Merge pull request #14863 from hpvb/fix-lightmapper-rng | Juan Linietsky | |
Fix lightmapper rng | |||
2017-12-20 | Fix lightmapper rng | Hein-Pieter van Braam | |
In our previous attempts to fix the lightmapper we may have inadvertently introduced the same issue we were trying to fix. It appears that rand() will on some platforms introduce a mutex making it slower and on others may have a per-thread state that would need to be initialized with srand() on each thread. This slows down the lightbaking further. This sets up a separate rng state for each OpenMP thread by calling rand() only in the single-threaded part of the code. We then keep a vector of states. I believe this solves our problems. | |||
2017-12-20 | Fix editor crash on "save and exit" bug | Chong-U Lim | |
If a scene is modified and a user closes the editor and selects the "Save and exit" option in the modal dialog -- the editor crashes. This appears to be a result of the message queue being memdeleted AFTER visual servers have been destroyed. Remnant textures handled by the message queue throw a NRE when their own ~Texture destructors reference the visual servers. This fixes bugs: #12946 and #12813. | |||
2017-12-19 | Make dynamic font oversampling fully dynamic. | Juan Linietsky | |
2017-12-20 | Correct license headers in main.cpp and voxel_light_baker.cpp | Hein-Pieter van Braam | |
Sorry for the churn | |||
2017-12-20 | Fix lightbaker clang-format issue and add license headers | Hein-Pieter van Braam | |
2017-12-20 | Thekla: redo reduz's changes from 8b01b2e85cb7ed60209c925f1e123374272bd8c8 | Rémi Verschelde | |
But this time without messing up the code style and with proper comments documenting changed code. | |||
2017-12-20 | Thekla: Revert to state before clang-format changes | Rémi Verschelde | |
The file was wrongly formatted in 8b01b2e85cb7ed60209c925f1e123374272bd8c8, for thirdparty code we keep the upstream style *if* we need to make changes at all. | |||
2017-12-20 | Lightbaker: include stdlib.h to fix CI builds | Hein-Pieter van Braam | |
2017-12-19 | Fix randomness in voxel light baker, closes #14841 | Juan Linietsky | |
2017-12-19 | Merge pull request #14787 from hpvb/dont-try-to-mix-ended-sample | Juan Linietsky | |
Don't try to mix a sample that has already ended | |||
2017-12-19 | Added font oversampling support | Juan Linietsky | |
2017-12-19 | Fix raytrace lightmap bake bias | Juan Linietsky | |
2017-12-19 | Good while it lasted, restored full 3D for 2D viewport, as required for ↵ | Juan Linietsky | |
Canvas BG mode. Fixes #14540 | |||
2017-12-19 | Propertly deinitialize sampler FBO/Texture, fixes #14586,#14805 | Juan Linietsky | |
2017-12-19 | properly plot normal when baking | Juan Linietsky | |
2017-12-19 | Merge pull request #14834 from guilhermefelipecgs/fix_pixel_snap | Juan Linietsky | |
Fix pixel snap not being used in 3.0 | |||
2017-12-19 | Fix pixel snap not being used in 3.0 | Guilherme Silva | |
2017-12-19 | Merge pull request #14833 from PJB3005/17-12-19-fix_mono_fatal_logs | Rémi Verschelde | |
Fix fatal mono logs not getting logged to disk. | |||
2017-12-19 | Fix fatal mono logs not getting logged to disk. | PJB3005 | |
They aborted the application without flushing the log file. Also there was a typo. | |||
2017-12-19 | Fixed bug where all file dialogs requested thumbnails even if hidden. | Juan Linietsky | |
2017-12-19 | Add Script.get_base_script/instance_base_type API | Will Nations | |
2017-12-19 | -Fix some crashes in unwrapper | Juan Linietsky | |
-Add emission lighting to raytrace mode, fixes #14686 | |||
2017-12-19 | Should no longer crash after rebaking, may be a solution to #14795 | Juan Linietsky | |
Not sure if this is the same problem, as reported, please test. | |||
2017-12-19 | Merge pull request #14821 from ibrahn/fnt-load-root-fix | Rémi Verschelde | |
BitmapFont::create_from_fnt loading file from project root. | |||
2017-12-19 | fix for BitmapFont::create_from_fnt to allow loading from file in | Ibrahn Sahir | |
project root directory. | |||
2017-12-19 | Merge pull request #14815 from rraallvv/cache | Rémi Verschelde | |
Purge larger files faster from SCons cache (master) | |||
2017-12-19 | Merge pull request #14818 from guilhermefelipecgs/fix_doc_methods_not_appearing2 | Rémi Verschelde | |
Add method_descr again because it's required | |||
2017-12-18 | sort by the most recently accessed files | Rhody Lugo | |
2017-12-18 | Add method_descr again because it's required for classes that | Guilherme Felipe | |
don't have public methods. revert #14814 | |||
2017-12-19 | Merge pull request #14814 from guilhermefelipecgs/fix_doc_methods_not_appearing | Rémi Verschelde | |
Fix doc methods not showing up | |||
2017-12-18 | Fix doc methods not showing up | Guilherme Felipe | |
2017-12-18 | Fix bug in previous commit | Rémi Verschelde | |
2017-12-18 | Prevent infinite loop in export template manager | Rémi Verschelde | |
2017-12-19 | Merge pull request #14809 from onur/fix-export-templates-install-from-file | Noshyaar | |
Fix installing export templates from file | |||
2017-12-18 | Fix installing export templates from file | Onur Aslan | |
3de20641f5690aba7551da5c592a79d44af54fef did break installing export templates from file. This patch is fixing it. | |||
2017-12-18 | Merge pull request #14699 from GodotExplorer/gdnlib_editor | Thomas Herzog | |
Add plugin to edit GDNativeLibrary | |||
2017-12-18 | Add plugin to edit GDNativeLibrary | geequlim | |
Rename GDNativeLibraryEditor to GDNativeLibrarySingletonEditor | |||
2017-12-18 | Use a different strategy for path remaps, try loading from a remap file instead. | Juan Linietsky | |
This ensures multiple PCK exports still work. | |||
2017-12-18 | Add more details to issue template | Rémi Verschelde | |
2017-12-18 | doc: Sync classref with current source | Rémi Verschelde | |
2017-12-18 | Merge pull request #14794 from endragor/remove-debug-logs | Rémi Verschelde | |
Remove debug logs that are of no use to end users | |||
2017-12-18 | Remove debug logs that are of no use to end users | Ruslan Mustakov | |
2017-12-18 | Added baked light support for gridmaps. | Juan Linietsky | |
2017-12-18 | Don't try to mix a sample that has already ended | Hein-Pieter van Braam | |
On short samples the sample may finish playing before the mixer is done. This fills the remaining time with zeros and ends mixing. This fixes the users getting the following error logged: ::_mix_internal: Condition ' !active ' is true. |