Revision 8b47746 by Miika Hamalainen December 5, 2012, 17:58 (GMT) |
Fix #33411: Smoke simulator using uninitialized noise tile If loading an existing FFT noise tile failed the tile in memory was left uninitialized. |
Revision 2b96221 by Brecht Van Lommel December 5, 2012, 15:46 (GMT) |
Fix #33411: crash baking smoke with FFT high resolution. CMake had FFTW disabled by default, and when FFTW was not enabled it lead to uninitialized memory usage. Now it falls back to wavelet if there is no FFTW, and I've enabled it by default in CMake. If it's not found on Linux it will get disabled automatically. |
Revision 4742dc3 by Sergey Sharybin December 5, 2012, 14:27 (GMT) |
Fix for crop operation using uninitialized bounds in cases input image resolution is zero. |
Revision c240535 by Bastien Montagne December 5, 2012, 11:58 (GMT) |
Make installation of some libs off by default (use --with-all option to re-enable them). Currently affected libs: *libspnav *liblame *libjack *libscrhoedinger *libvpx *libxvid |
Revision 5bb576e by Brecht Van Lommel December 5, 2012, 11:46 (GMT) |
Fix #33417: add back GPU Mipmap Generation option, apparently with this disabled it takes up less memory on some cards, still unclear why. |
Revision 690359e by Brecht Van Lommel December 5, 2012, 06:30 (GMT) |
Fix crash opening some .blend files on OS X 10.8 with double click or drag and drop onto the application. It seems something changed in the operating which makes our method of releasing windows crash. Previously we called [m_window release], but on 10.8 this does not remove the window from [NSApp orderedWindows] and perhaps other places, leading to crashes. So instead we set setReleasedWhenClosed back to YES right before closing, which will then do the cleanup for us. |
Revision 57d7c1f by Campbell Barton December 5, 2012, 03:38 (GMT) |
pydna experimental ctypes DNA api was broken with more recent python versions, and some minor doc edits. |
Revision af51827 by Campbell Barton December 5, 2012, 01:02 (GMT) |
add a message when solidify is used with only-edges, this isn't properly supported. also minor edits to py-api-ref -- This line, and those below, will be ignored-- M doc/python_api/sphinx_doc_gen.py M doc/python_api/rst/include__bmesh.rst M source/blender/modifiers/intern/MOD_solidify.c |
Revision 724746d by Tamito Kajiyama December 4, 2012, 22:33 (GMT) |
A patch set by Bastien Montagne (many thanks!) * Removed the ../include and ../src include directories from scons/cmake files. These directories do not exist and are very noisy when building. * Coding style clean-up in Python scripts: 'string' is used for enum values, and "string" for usual stings. * UILayout.active is used instead of UILayout.enabled to grey out "inactive" settings. This still allows users to edit them, which can be handy sometimes. * Improved UI layout of the Line Style panel by means of: - The standard �??column�? paradigm is used in more places; - More compact layout where possible; and - Tweaks to the modifiers' header. * Improved UI layout of the Line Set panel by rearranging the "Selection by" options into a compact row of toggle buttons. |
Revision b095c31 by Bastien Montagne December 4, 2012, 22:03 (GMT) |
Can't stress how much I hate bash... This should fix a bug with version comparison (at least under fedora, debian looked OK :/ ). |
Revision 5b9f309 by Campbell Barton December 4, 2012, 20:09 (GMT) |
update parse_syntax_error() from python3.3 - this is an internal python function that isn't exposed to the api. |
Revision d0667c7 by Campbell Barton December 4, 2012, 19:58 (GMT) |
fix for python button evaluation not restoring the __main__ module. |
Revision 302856f by Campbell Barton December 4, 2012, 18:22 (GMT) |
operator spacebar search menu wasn't ignoring internal operators, turns out there were copy-pasted functions for operator search popups which were identical except that one skipped internal ops. de-duplicate so both work the same now. |
Revision 77fdf42 by Campbell Barton December 4, 2012, 17:54 (GMT) |
disable numpy warning with cmake, since we didnt end up bundling this with blender yet. |
Revision 677c712 by Campbell Barton December 4, 2012, 17:38 (GMT) |
fix [#33412] Jump to next frame broken in grease pencil mode allow arrow keys while in grease pencil session, otherwise you can't change frames. also correct out-of-date comments. |
Revision 576bc2e by Campbell Barton December 4, 2012, 15:28 (GMT) |
bevel - use tri-fan filling in the special case when a bevel edge meets a non bevel edge at a valence 2 vert. this is the topology tri-fan was intended to be used. |
Revision 767bfba by Campbell Barton December 4, 2012, 14:43 (GMT) |
cmake was missing some header files. |
Revision 41b6e70 by Campbell Barton December 4, 2012, 14:41 (GMT) |
bevel: re-order checks so angle checks are done after quick sanity checks. |
Revision 1d0f005 by Campbell Barton December 4, 2012, 12:41 (GMT) |
fix for WM_keymap_remove_item() writing to freed memory. |
Revision 60cd5ee by Campbell Barton December 4, 2012, 11:21 (GMT) |
fix for typo when overwriting pythons stdout/stderr, also print errors if they happen here now. |
|